diaohancai

Results 8 issues of diaohancai

### Before Creating the Bug Report - [X] I found a bug, not just asking a question, which should be created in [GitHub Discussions](https://github.com/apache/rocketmq/discussions). - [X] I have searched the...

Fixes #7749 ### Brief Description ### How Did You Test This Change?

## Purpose of the PR - close #576 ## Main Changes `org.apache.hugegraph.util.JsonUtil` supply method to parse json list. ## Verifying these changes - [ ] Trivial rework / code cleanup...

enhancement
java
client
size:L

### Search before asking - [X] I had searched in the [feature](https://github.com/apache/incubator-hugegraph-toolchain/issues?q=is%3Aissue+label%3A%22Feature%22) and found no similar feature requirement. ### Feature Description (功能描述) `org.apache.hugegraph.util.JsonUtil` supply method to parse json list. ###...

enhancement
feature
tools

## Purpose of the PR - close #302 ## Main Changes 1. computation results output supports custom write. 2. `SingleSourceShortestPathOutput` implements `org.apache.hugegraph.computer.core.output.ComputerOutput#filter` ## Verifying these changes - [ ] Trivial...

feature
size:S

### Feature Description (功能描述) Currently, all vertices output computation results. But some scenarios do not require all vertices to output computation results. Such as `Single Source Shortest Path` algorithm, when...

feature

### Feature Description (功能描述) Source-Target Shortest Path. Calculate the shortest path from source vertex A to target vertex B Refer to _**Dijkstra's Shortest Path Algorithm**_.

feature

### Feature Description (功能描述) `ComputerOptions.INPUT_FILTER_CLASS` default value is `DefaultInputFilter`. `org.apache.hugegraph.computer.core.input.filter.DefaultInputFilter` ```java public class DefaultInputFilter implements InputFilter { @Override public Vertex filter(Vertex vertex) { vertex.properties().clear(); return vertex; } @Override public Edge...

feature