Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 597 for IsSame (0.09 sec)

  1. pilot/pkg/xds/workload_test.go

    		// Create pod we are not subscribed to; due to same-node optimization this will push
    		createPod(s, "pod-same-node", "sa", "127.0.0.3", "node")
    		expect(ads.ExpectResponse(), "Kubernetes//Pod/default/pod-same-node")
    
    		deletePod(s, "pod-same-node")
    		expectRemoved(ads.ExpectResponse(), "Kubernetes//Pod/default/pod-same-node")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. src/runtime/pinner.go

    	lock(&span.speciallock) // guard against concurrent calls of setPinned on same span
    
    	pinnerBits := span.getPinnerBits()
    	if pinnerBits == nil {
    		pinnerBits = span.newPinnerBits()
    		span.setPinnerBits(pinnerBits)
    	}
    	pinState := pinnerBits.ofObject(objIndex)
    	if pin {
    		if pinState.isPinned() {
    			// multiple pins on same object, set multipin bit
    			pinState.setMultiPinned(true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/primitives/Booleans.java

       *
       * <p><b>Note:</b> consider representing the collection as a {@link java.util.BitSet} instead.
       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/primitives/Booleans.java

       *
       * <p><b>Note:</b> consider representing the collection as a {@link java.util.BitSet} instead.
       *
       * @param collection a collection of {@code Boolean} objects
       * @return an array containing the same values as {@code collection}, in the same order, converted
       *     to primitives
       * @throws NullPointerException if {@code collection} or any of its elements is null
       */
      public static boolean[] toArray(Collection<Boolean> collection) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // ReluGrad(gradients, features) = gradients * (features > 0)
    // The condition that $gradients and $features need to have the same shape is
    // implicitly enforced: $zero is created to have the same shape as $features,
    // MHLO_SelectOp enforces that $gradients and $zero have the same shape.
    def : Pat<(TF_ReluGradOp AnyTensor:$gradients, AnyTensor:$features),
              (MHLO_SelectOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> skip(int numberToSkip) {
        return from(Iterables.skip(getDelegate(), numberToSkip));
      }
    
      /**
       * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this
       * fluent iterable does not contain that many elements, the returned fluent iterable will have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/FluentIterable.java

       */
      public final FluentIterable<E> skip(int numberToSkip) {
        return from(Iterables.skip(getDelegate(), numberToSkip));
      }
    
      /**
       * Creates a fluent iterable with the first {@code size} elements of this fluent iterable. If this
       * fluent iterable does not contain that many elements, the returned fluent iterable will have the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

      // Constant operation that defines permutation indices for result transposes.
      ConstOp permutation_op;
    
      // All operation results must be used by transpose operations with the same
      // permutation indices.
      for (OpResult result : op->getResults()) {
        for (Operation* user : result.getUsers()) {
          // Result user must be a transpose operation.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler_test.go

    }
    
    // Test that an etag associated with the service only depends on the apiresources
    // e.g.: Multiple services with the same contents should have the same etag.
    func TestEtagConsistent(t *testing.T) {
    	// Create 2 managers, add a bunch of services to each
    	manager1 := discoveryendpoint.NewResourceManager("apis")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

       *
       * <p>Note, however, that although multiple locks can be created for a given Enum value, whether
       * it be through separate factory instances or through multiple calls to the same factory,
       * attempting to acquire multiple locks with the same Enum value (within the same thread) will
       * result in an IllegalStateException regardless of the factory's policy. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top