Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,636 for erator (0.15 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                } finally {
                    stk.pop();
                }
            }
    
            @Override
            protected ActivationOS.Builder transformActivationOS_Name(
                    Supplier<? extends ActivationOS.Builder> creator, ActivationOS.Builder builder, ActivationOS target) {
                stk.push(nextFrame("name"));
                try {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  2. src/mdo/java/ImmutableCollections.java

            public Set<Entry<Object, Object>> entrySet() {
                return new AbstractImmutableSet<Entry<Object, Object>>() {
                    @Override
                    public Iterator<Entry<Object, Object>> iterator() {
                        return new Iterator<Entry<Object, Object>>() {
                            @Override
                            public boolean hasNext() {
                                return false;
                            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/Headers.kt

        for (i in 0 until namesAndValues.size) {
          result += namesAndValues[i].length.toLong()
        }
    
        return result
      }
    
      override operator fun iterator(): Iterator<Pair<String, String>> = commonIterator()
    
      fun newBuilder(): Builder = commonNewBuilder()
    
      /**
       * Returns true if `other` is a `Headers` object with the same headers, with the same casing, in
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // gcc 3.3 fails to compile due to a compiler bug.
      using namespace ::testing::internal2;  // NOLINT
    
      // Assuming T is defined in namespace foo, in the next statement,
      // the compiler will consider all of:
      //
      //   1. foo::operator<< (thanks to Koenig look-up),
      //   2. ::operator<< (as the current namespace is enclosed in ::),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  5. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/ImmutableCollections.java

            public Set<Entry<Object, Object>> entrySet() {
                return new AbstractImmutableSet<Entry<Object, Object>>() {
                    @Override
                    public Iterator<Entry<Object, Object>> iterator() {
                        return new Iterator<Entry<Object, Object>>() {
                            @Override
                            public boolean hasNext() {
                                return false;
                            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      // gcc 3.3 fails to compile due to a compiler bug.
      using namespace ::testing::internal2;  // NOLINT
    
      // Assuming T is defined in namespace foo, in the next statement,
      // the compiler will consider all of:
      //
      //   1. foo::operator<< (thanks to Koenig look-up),
      //   2. ::operator<< (as the current namespace is enclosed in ::),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

            file(dsl.fileNameFor("build")).text = """
            ${setupDependencies()}
    
            dependencies {
                testingCollector(${expression})
            }
    
            assert(testingCollectorConf.dependencies.iterator().next() == project.dependencies.${expression})
            """
            expect:
            succeeds("help")
    
            where:
            expression << [
                "gradleApi()",
                "gradleTestKit()",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. tensorflow/cc/framework/ops.h

      }
      bool operator==(const Output& other) const {
        return op_ == other.op_ && index_ == other.index_;
      }
    
      uint64 hash() const { return op_.hash(index_); }
    
     private:
      Operation op_ = Operation(nullptr);
      int32 index_ = 0;
    };
    
    /// Hash class that can be used for e.g. storing Outputs in an unordered_map
    struct OutputHash {
      std::size_t operator()(const Output& output) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def collection = Mock(Collection)
            this.collection.from(collection)
    
            when:
            this.collection.finalizeValue()
    
            then:
            1 * collection.iterator() >> ['a', 'b'].iterator()
            0 * collection._
            1 * fileResolver.resolve('a') >> file1
            1 * fileResolver.resolve('b') >> file2
    
            when:
            def files = this.collection.files
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        // collections views shouldn't expose expired entries
        assertEquals(1, Iterators.size(cache.asMap().entrySet().iterator()));
        assertEquals(1, Iterators.size(cache.asMap().keySet().iterator()));
        assertEquals(1, Iterators.size(cache.asMap().values().iterator()));
    
        CacheTesting.expireEntries((LoadingCache<?, ?>) cache, EXPIRING_TIME, ticker);
    
        for (int i = 0; i < 11; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
Back to top