Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for populate (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                    if (parent == null) {
                        //
                        // At this point the DefaultModelBuildingListener has fired and it populates the
                        // remote repositories with those found in the pom.xml, along with the existing externally
                        // defined repositories.
                        //
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSet.java

          switch (size) {
            case 0:
              return of();
            case 1:
              /*
               * requireNonNull is safe because we ensure that the first `size` elements have been
               * populated.
               */
              return (ImmutableSet<E>) of(requireNonNull(contents[0]));
            default:
              ImmutableSet<E> result;
              if (hashTable != null && chooseTableSize(size) == hashTable.length) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 22.6K bytes
    - Viewed (0)
Back to top