Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for hasMoreElements (0.15 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            }
            return toMutableList(things);
        }
    
        public static <T> List<T> toList(Enumeration<? extends T> things) {
            AbstractList<T> list = new ArrayList<T>();
            while (things.hasMoreElements()) {
                list.add(things.nextElement());
            }
            return list;
        }
    
        private static <T> List<T> toMutableList(Iterable<? extends T> things) {
            if (things == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/ClassPath.java

            }
          }
        }
    
        private void scanJarFile(JarFile file, ImmutableSet.Builder<ResourceInfo> builder) {
          Enumeration<JarEntry> entries = file.entries();
          while (entries.hasMoreElements()) {
            JarEntry entry = entries.nextElement();
            if (entry.isDirectory() || entry.getName().equals(JarFile.MANIFEST_NAME)) {
              continue;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/ClassPath.java

            }
          }
        }
    
        private void scanJarFile(JarFile file, ImmutableSet.Builder<ResourceInfo> builder) {
          Enumeration<JarEntry> entries = file.entries();
          while (entries.hasMoreElements()) {
            JarEntry entry = entries.nextElement();
            if (entry.isDirectory() || entry.getName().equals(JarFile.MANIFEST_NAME)) {
              continue;
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 05 17:43:40 UTC 2022
    - 24.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

        }
    
        public static <T> List<T> toList(Enumeration<? extends T> things) {
            logDeprecation(7);
            AbstractList<T> list = new ArrayList<T>();
            while (things.hasMoreElements()) {
                list.add(things.nextElement());
            }
            return list;
        }
    
        private static <T> List<T> toMutableList(Iterable<? extends T> things) {
            logDeprecation(7);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top