Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 58 for identical (0.56 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // consistent list may not be possible if the server configuration has changed or more than a few
      // minutes have passed. The resourceVersion field returned when using this continue value will be
      // identical to the value in the first response, unless you have received this token from an error
      // message.
      optional string continue = 3;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // consistent list may not be possible if the server configuration has changed or more than a few
      // minutes have passed. The resourceVersion field returned when using this continue value will be
      // identical to the value in the first response, unless you have received this token from an error
      // message.
      optional string continue = 3;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/reflect/type.go

    // inappropriate to the kind of type causes a run-time panic.
    //
    // Type values are comparable, such as with the == operator,
    // so they can be used as map keys.
    // Two Type values are equal if they represent identical types.
    type Type interface {
    	// Methods applicable to all types.
    
    	// Align returns the alignment in bytes of a value of
    	// this type when allocated in memory.
    	Align() int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// consistent list may not be possible if the server configuration has changed or more than a few
    	// minutes have passed. The resourceVersion field returned when using this continue value will be
    	// identical to the value in the first response, unless you have received this token from an error
    	// message.
    	Continue string `json:"continue,omitempty" protobuf:"bytes,3,opt,name=continue"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Sets.java

       * set of the empty set is not the empty set, but a one-element set containing the empty set.
       *
       * <p>The returned set and its constituent sets use {@code equals} to decide whether two elements
       * are identical, even if the input set uses a different concept of equivalence.
       *
       * <p><i>Performance notes:</i> while the power set of a set with size {@code n} is of size {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context_test.go

    				},
    			},
    		},
    		{
    			// Detailed tests regarding TrafficSelector are in extension_test.go
    			// Just test the integrity here.
    			// This testcase is identical with "testns-2", but `listenerInfo`` is specified.
    			// 1. `global-authn-high-prio-app` matched, because it has a port matching clause with "1234"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  7. src/runtime/traceback.go

    		}
    		if fail {
    			throw("unknown caller pc")
    		}
    		frame.lr = 0
    		u.finishInternal()
    		return
    	}
    
    	if frame.pc == frame.lr && frame.sp == frame.fp {
    		// If the next frame is identical to the current frame, we cannot make progress.
    		print("runtime: traceback stuck. pc=", hex(frame.pc), " sp=", hex(frame.sp), "\n")
    		tracebackHexdump(gp.stack, frame, frame.sp)
    		throw("traceback stuck")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Sets.java

       * set of the empty set is not the empty set, but a one-element set containing the empty set.
       *
       * <p>The returned set and its constituent sets use {@code equals} to decide whether two elements
       * are identical, even if the input set uses a different concept of equivalence.
       *
       * <p><i>Performance notes:</i> while the power set of a set with size {@code n} is of size {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions.mlir

    // -----
    
    // Tests that fused pattern for convolution + bias + relu with
    // dynamic batch dimension is properly quantized.
    
    // Note that this checks for identical condition as
    // quantize_conv_with_bias_dynamic_fn, omitting stablehlo.maximum.
    // This is because activation clipping which includes 0.0f can be simply
    // omitted from the graph as the lifted function's out_scale and out_zp are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 91.6K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    			if created.Name != expectedName {
    				t.Errorf("%s: on name collision wanted new name %s got %s", test.name, expectedName, created.Name)
    			}
    
    			// Second name collision will be caused by an identical revision, so no need to do anything
    			_, err = history.CreateControllerRevision(test.parent, test.revision, &collisionCount)
    			if err != nil {
    				t.Errorf("%s: %s", test.name, err)
    			}
    			if collisionCount != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top