Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 141 for iterations (0.2 sec)

  1. guava/src/com/google/common/collect/Multimaps.java

       * {@code factory}, and the multimap contents are all serializable.
       *
       * <p>The multimap is not threadsafe when any concurrent operations update the multimap, even if
       * {@code map} and the instances generated by {@code factory} are. Concurrent read operations will
       * work correctly. To allow concurrent update operations, wrap the multimap with a call to {@link
       * #synchronizedMultimap}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements are provided to the method.
       *
       * @param anElement one of the elements the set should contain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Sets.java

        }
      }
    
      /**
       * Returns an immutable set instance containing the given enum elements. Internally, the returned
       * set will be backed by an {@link EnumSet}.
       *
       * <p>The iteration order of the returned set follows the enum's iteration order, not the order in
       * which the elements are provided to the method.
       *
       * @param anElement one of the elements the set should contain
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

     * entries may be counted in {@link Cache#size}, but will never be visible to read or write
     * operations.
     *
     * <p>Certain cache configurations will result in the accrual of periodic maintenance tasks which
     * will be performed during write operations, or during occasional read operations in the absence of
     * writes. The {@link Cache#cleanUp} method of the returned cache will also perform maintenance, but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/runtime/map.go

    // copied from the old bucket array to the new bucket array.
    //
    // Map iterators walk through the array of buckets and
    // return the keys in walk order (bucket #, then overflow
    // chain order, then bucket index).  To maintain iteration
    // semantics, we never move keys within their bucket (if
    // we did, keys might be returned 0 or 2 times).  When
    // growing the table, iterators remain iterating through the
    // old table and must check the new table if the bucket
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    	}
    
    	authority := ""
    	if in.Headers != nil {
    		operations := TranslateHeadersOperations(in.Headers)
    		out.RequestHeadersToAdd = operations.RequestHeadersToAdd
    		out.ResponseHeadersToAdd = operations.ResponseHeadersToAdd
    		out.RequestHeadersToRemove = operations.RequestHeadersToRemove
    		out.ResponseHeadersToRemove = operations.ResponseHeadersToRemove
    		authority = operations.Authority
    	}
    
    	var hostnames []host.Name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<String> itr2 = Iterators.concat(Iterators.singletonIterator("d"), itr1);
        assertEquals("d", itr2.next());
        assertEquals("c", itr2.next());
      }
    
      public void testConcatPartiallyAdvancedFirst() {
        Iterator<String> itr1 =
            Iterators.concat(Iterators.singletonIterator("a"), Iterators.forArray("b", "c"));
        assertEquals("a", itr1.next());
        assertEquals("b", itr1.next());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

        def getExecutePlannedStepOperations(int expectOperationsCount, boolean expectFailure = false) {
            def operations = buildOperations.all(ExecutePlannedTransformStepBuildOperationType)
            assert operations.every { (it.failure != null) == expectFailure }
            assert operations.size() == expectOperationsCount
            return operations
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    }
    
    func (p patchMyCRDV1Beta1Schema) Description() string {
    	return p.description
    }
    
    type ratchetingTestCase struct {
    	Name       string
    	Disabled   bool
    	Operations []ratchetingTestOperation
    }
    
    func runTests(t *testing.T, cases []ratchetingTestCase) {
    	featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.CRDValidationRatcheting, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

                operations.add(InternalBuildProgressListener.TRANSFORM_EXECUTION);
            }
            if (!testOutputProgressListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.TEST_OUTPUT);
            }
            if (!fileDownloadListeners.isEmpty()) {
                operations.add(InternalBuildProgressListener.FILE_DOWNLOAD);
            }
            if (!buildPhaseListeners.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
Back to top