Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 64 for _iterator2 (0.26 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     * Cache} interfaces. The {@code asMap} view (and its collection views) have <i>weakly consistent
     * iterators</i>. This means that they are safe for concurrent use, but if other threads modify the
     * cache after the iterator is created, it is undefined which of these changes, if any, are
     * reflected in that iterator. These iterators never throw {@link ConcurrentModificationException}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                   }
                }
            '''.stripIndent()
    
            when:
            run 'copy'
    
            then:
            def it = file('dest/two.a').readLines().iterator()
            it.next().startsWith('6')
            it.next().startsWith('11')
            it.next().startsWith('16')
        }
    
        def "can rename files in eachFile() action defined using Groovy closure"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public Set<File> resolve() {
            warnOnDeprecatedUsage("resolve()", ProperMethodUsage.RESOLVABLE);
            return getFiles();
        }
    
        @Override
        public Iterator<File> iterator() {
            return getIntrinsicFiles().iterator();
        }
    
        @Override
        protected void visitContents(FileCollectionStructureVisitor visitor) {
            getIntrinsicFiles().visitStructure(visitor);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<DependencyManagement> importMgmts = null;
    
            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
            for (Iterator<Dependency> it = deps.iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            };
            final Supplier<InputLocation> locationSupplier = () -> {
                if (stk.size() < 2) {
                    return null;
                }
                Iterator<ActivationFrame> f = stk.iterator();
    
                String location = f.next().location;
                ActivationFrame parent = f.next();
    
                return parent.parent.map(p -> p.getLocation(location)).orElse(null);
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //   - returns a generator producing sequences with elements from
    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    //
    // Please note that ValuesIn copies the values from the containers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            importIds.add(importing);
    
            List<org.apache.maven.api.model.DependencyManagement> importMgmts = null;
    
            for (Iterator<Dependency> it = depMgmt.getDependencies().iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            };
            final Supplier<InputLocation> locationSupplier = () -> {
                if (stk.size() < 2) {
                    return null;
                }
                Iterator<ActivationFrame> f = stk.iterator();
    
                String location = f.next().location;
                ActivationFrame parent = f.next();
    
                return parent.parent.map(p -> p.getLocation(location)).orElse(null);
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```
    ### `-tf-name-anonymous-iterators`
    
    _Converts anonymous iterators to named iterators_
    
    This converts AnonymousIterator ops to Iterator, thus giving them a name.
    For example, this will convert
      %0 = "tf.AnonymousIteratorV3"() {...}
    to
      %0 = "tf.Iterator"() {shared_name = "_iterator1", ...}
    ### `-tf-optimize`
    
    _Optimize TensorFlow module_
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //   - returns a generator producing sequences with elements from
    //     an STL-style container.
    // ValuesIn(Iterator begin, Iterator end)
    //   - returns a generator producing sequences with elements from
    //     a range [begin, end) defined by a pair of STL-style iterators. These
    //     iterators can also be plain C pointers.
    //
    // Please note that ValuesIn copies the values from the containers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
Back to top