Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for _Equal (0.2 sec)

  1. pkg/apis/core/types.go

    	// +optional
    	Key string
    	// Operator represents a key's relationship to the value.
    	// Valid operators are Exists and Equal. Defaults to Equal.
    	// Exists is equivalent to wildcard for value, so that a pod can
    	// tolerate all taints of a particular category.
    	// +optional
    	Operator TolerationOperator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK: return %[[LE]] : tensor<?xi1>
      %equal = "tf.ApproximateEqual"(%arg0, %arg1) { tolerance = 2. : f32 } : (tensor<?xf64>, tensor<?xf64>) -> tensor<?xi1>
      func.return %equal : tensor<?xi1>
    }
    
    // CHECK-LABEL: func @approximateequal_i32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string key = 1;
    
      // Operator represents a key's relationship to the value.
      // Valid operators are Exists and Equal. Defaults to Equal.
      // Exists is equivalent to wildcard for value, so that a pod can
      // tolerate all taints of a particular category.
      // +optional
      optional string operator = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"operator":          "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	Key string `json:"key,omitempty" protobuf:"bytes,1,opt,name=key"`
    	// Operator represents a key's relationship to the value.
    	// Valid operators are Exists and Equal. Defaults to Equal.
    	// Exists is equivalent to wildcard for value, so that a pod can
    	// tolerate all taints of a particular category.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string key = 1;
    
      // Operator represents a key's relationship to the value.
      // Valid operators are Exists and Equal. Defaults to Equal.
      // Exists is equivalent to wildcard for value, so that a pod can
      // tolerate all taints of a particular category.
      // +optional
      optional string operator = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteARM.go

    	v_0 := v.Args[0]
    	// match: (Equal (FlagConstant [fc]))
    	// result: (MOVWconst [b2i32(fc.eq())])
    	for {
    		if v_0.Op != OpARMFlagConstant {
    			break
    		}
    		fc := auxIntToFlagConstant(v_0.AuxInt)
    		v.reset(OpARMMOVWconst)
    		v.AuxInt = int32ToAuxInt(b2i32(fc.eq()))
    		return true
    	}
    	// match: (Equal (InvertFlags x))
    	// result: (Equal x)
    	for {
    		if v_0.Op != OpARMInvertFlags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    // otherwise be unsafe and could introduce vulnerabilities if used improperly.
    
    // asciiEqualFold is strings.EqualFold, ASCII only. It reports whether s and t
    // are equal, ASCII-case-insensitively.
    func http2asciiEqualFold(s, t string) bool {
    	if len(s) != len(t) {
    		return false
    	}
    	for i := 0; i < len(s); i++ {
    		if http2lower(s[i]) != http2lower(t[i]) {
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  9. pkg/registry/core/service/storage/storage_test.go

    			if tc.expectSameClusterIPs {
    				if !cmp.Equal(beforeIPs, updateIPs) {
    					t.Errorf("expected clusterIPs to be patched: %q != %q", beforeIPs, updateIPs)
    				}
    			} else if tc.expectReducedClusterIPs {
    				if len(updateIPs) != 1 || beforeIPs[0] != updateIPs[0] {
    					t.Errorf("expected clusterIPs to be trim-patched: %q -> %q", beforeIPs, updateIPs)
    				}
    			} else if cmp.Equal(beforeIPs, updateIPs) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"array"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
Back to top