Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Sentry (0.23 sec)

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

        /**
         * construct a single vertex
         */
        public MetadataGraph(MetadataGraphVertex entry) throws MetadataResolutionException {
            checkVertex(entry);
            checkVertices(1);
    
            entry.setCompareVersion(versionedVertices);
            entry.setCompareScope(scopedVertices);
    
            vertices.add(entry);
            this.entry = entry;
        }
        // ------------------------------------------------------------------------
    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)
  2. 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() {
            nodes = new ArrayList<>(64);
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top