Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkVertices (0.09 sec)

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

                nV = 1;
            }
    
            checkVertices(nV);
    
            int nE = nVertices;
            if (nEdges <= nV) {
                nE = 2 * nE;
            }
    
            checkEdges(nE);
        }
    
        private void checkVertices() {
            checkVertices(DEFAULT_VERTICES);
        }
    
        private void checkVertices(int nVertices) {
            if (vertices == null) {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top