Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Point (0.18 sec)

  1. maven-compat/src/main/java/org/apache/maven/repository/MetadataGraph.java

     *
     *
     */
    @Deprecated
    public class MetadataGraph {
        /** all graph nodes */
        Collection<MetadataGraphNode> nodes;
    
        /** entry point for tree-like structures */
        MetadataGraphNode entry;
    
        public MetadataGraph(MetadataGraphNode entry) {
            this();
    
            this.entry = entry;
        }
    
        public MetadataGraph() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

        public static final int DEFAULT_EDGES = 64;
    
        // flags to indicate the granularity of vertices
        private boolean versionedVertices = false;
        private boolean scopedVertices = false;
        /**
         * the entry point we started building the graph from
         */
        MetadataGraphVertex entry;
    
        // graph vertices
        TreeSet<MetadataGraphVertex> vertices;
    
        /**
         * incident and excident edges per node
         */
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Oct 05 18:41:13 GMT 2023
    - 13.1K bytes
    - Viewed (0)
Back to top