Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkedGet (0.3 sec)

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

                nE = 2 * nE;
            }
    
            checkEdges(nE);
        }
    
        private void checkVertices() {
            checkVertices(DEFAULT_VERTICES);
        }
    
        private void checkVertices(int nVertices) {
            if (vertices == null) {
                vertices = new TreeSet<>();
            }
        }
    
        private void checkEdges() {
            int count = DEFAULT_EDGES;
    
    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. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                    Set<String> innerSet = new HashSet<>();
                    Collections.addAll(innerSet, elements);
                    return Collections.checkedSet(innerSet, String.class);
                  }
                })
            .named("checkedSet/HashSet")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
                CollectionFeature.SERIALIZABLE,
                CollectionFeature.ALLOWS_NULL_VALUES,
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 15.1K bytes
    - Viewed (0)
  3. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                    Set<String> innerSet = new HashSet<>();
                    Collections.addAll(innerSet, elements);
                    return Collections.checkedSet(innerSet, String.class);
                  }
                })
            .named("checkedSet/HashSet")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
                CollectionFeature.SERIALIZABLE,
                CollectionFeature.ALLOWS_NULL_VALUES,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top