Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,133 for valid (0.06 sec)

  1. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    		},
    		"kubeconfig exist and is valid": {
    			existingKubeConfig: config,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA contains whitespace": {
    			existingKubeConfig: configWhitespace,
    			kubeConfig:         config,
    			expectedError:      false,
    		},
    		"kubeconfig exist and is valid even if its CA is provided as an external file": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. src/net/http/cookie_test.go

    		{&Cookie{Name: "valid-partitioned", Value: "foo", Path: "/", Secure: true, Partitioned: true}, true},
    	}
    
    	for _, tt := range tests {
    		err := tt.cookie.Valid()
    		if err != nil && tt.valid {
    			t.Errorf("%#v.Valid() returned error %v; want nil", tt.cookie, err)
    		}
    		if err == nil && !tt.valid {
    			t.Errorf("%#v.Valid() returned nil; want error", tt.cookie)
    		}
    	}
    }
    
    func BenchmarkCookieString(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  3. cmd/bucket-object-lock.go

    	if objInfo.DeleteMarker {
    		return false
    	}
    
    	lhold := objectlock.GetObjectLegalHoldMeta(objInfo.UserDefined)
    	if lhold.Status.Valid() && lhold.Status == objectlock.LegalHoldOn {
    		return true
    	}
    
    	ret := objectlock.GetObjectRetentionMeta(objInfo.UserDefined)
    	if ret.Mode.Valid() && (ret.Mode == objectlock.RetCompliance || ret.Mode == objectlock.RetGovernance) {
    		t, err := objectlock.UTCNowNTP()
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/pcln.go

    }
    
    // numPCData returns the number of PCData syms for the FuncInfo.
    // NB: Preload must be called on valid FuncInfos before calling this function.
    func numPCData(ldr *loader.Loader, s loader.Sym, fi loader.FuncInfo) uint32 {
    	if !fi.Valid() {
    		return 0
    	}
    	numPCData := uint32(ldr.NumPcdata(s))
    	if fi.NumInlTree() > 0 {
    		if numPCData < abi.PCDATA_InlTreeIndex+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_drq.mlir

        %conv = "tf.Conv2D"(%arg0, %arg1) {attr_map = "0:strides,1:use_cudnn_on_gpu,2:padding,3:explicit_paddings,4:dilations", data_format = "NHWC", device = "", dilations = [1, 2, 2, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true} : (tensor<1x2x2x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
        return %conv : tensor<*xf32>
      }
    
    // CHECK-LABEL: func @conv
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/check.go

    	scope         *Scope                    // top-most scope for lookups
    	pos           syntax.Pos                // if valid, identifiers are looked up as if at position pos (used by Eval)
    	iota          constant.Value            // value of iota in a constant declaration; nil otherwise
    	errpos        syntax.Pos                // if valid, identifier position of a constant with inherited initializer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  7. src/unicode/utf8/utf8.go

    // possibly invalid rune. Second and subsequent bytes always have the top two
    // bits set to 10.
    func RuneStart(b byte) bool { return b&0xC0 != 0x80 }
    
    // Valid reports whether p consists entirely of valid UTF-8-encoded runes.
    func Valid(p []byte) bool {
    	// This optimization avoids the need to recompute the capacity
    	// when generating code for p[8:], bringing it to parity with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclass_test.go

    		},
    		DriverName: driverName,
    	}
    }
    
    func TestValidateClass(t *testing.T) {
    	goodName := "foo"
    	now := metav1.Now()
    	goodParameters := resource.ResourceClassParametersReference{
    		Name:      "valid",
    		Namespace: "valid",
    		Kind:      "foo",
    	}
    	badName := "!@#$%^"
    	badValue := "spaces not allowed"
    	badAPIGroup := "example.com/v1"
    	goodAPIGroup := "example.com"
    
    	scenarios := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

      %conv = "tf.Conv2D"(%dq_input, %dq_weight) {attr_map = "0:strides,1:use_cudnn_on_gpu,2:padding,3:explicit_paddings,4:dilations", data_format = "NHWC", device = "", dilations = [1, 1, 1, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true} : (tensor<1x3x4x3xf32>, tensor<2x3x3x2xf32>) -> tensor<*xf32>
      %biasadd = "tf.BiasAdd"(%conv, %dq_bias) {data_format = "NHWC", device = ""} : (tensor<*xf32>, tensor<2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. pkg/apis/apps/validation/validation.go

    // Prefix indicates this name will be used as part of generation, in which case
    // trailing dashes are allowed.
    var ValidateControllerRevisionName = apimachineryvalidation.NameIsDNSSubdomain
    
    // ValidateControllerRevision collects errors for the fields of state and returns those errors as an ErrorList. If the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 06 22:11:20 UTC 2024
    - 41.4K bytes
    - Viewed (0)
Back to top