Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,344 for valid (0.05 sec)

  1. src/cmd/vendor/golang.org/x/mod/module/module.go

    		return fmt.Errorf("invalid version")
    	}
    	return nil
    }
    
    // CheckImportPath checks that an import path is valid.
    //
    // A valid import path consists of one or more valid path elements
    // separated by slashes (U+002F). (It must not begin with nor end in a slash.)
    //
    // A valid path element is a non-empty string made up of
    // ASCII letters, ASCII digits, and limited ASCII punctuation: - . _ and ~.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. pkg/proxy/apis/config/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath, hostIP, "must be a valid IP"))
    	}
    
    	if p, err := strconv.Atoi(port); err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, port, "must be a valid port"))
    	} else if p < 1 || p > 65535 {
    		allErrs = append(allErrs, field.Invalid(fldPath, port, "must be a valid port"))
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    					"metadata": map[string]interface{}{
    						"creationTimestamp": nil,
    					},
    					"spec":   map[string]interface{}{},
    					"status": map[string]interface{}{},
    				},
    			},
    		},
    		{
    			name: "convert valid versioned object to unstructured should work",
    			objectToConvert: &testapigroupv1.Carp{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "noxu",
    				},
    				Spec: testapigroupv1.CarpSpec{
    					Hostname: "example.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/route-binding.status.yaml.golden

    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: HTTPRoute
    metadata:
      creationTimestamp: null
      name: same-namespace-valid
      namespace: istio-system
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
          message: Route was valid
          reason: Accepted
          status: "True"
          type: Accepted
        - lastTransitionTime: fake
          message: All references resolved
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 20:48:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/discovery/token/token_test.go

    		delayedJWSSignaturePatch bool
    		expectedError            bool
    	}{
    		{
    			// This is the default behavior. The JWS signature is patched after the cluster-info ConfigMap is created
    			name:        "valid: retrieve a valid kubeconfig with CA verification and delayed JWS signature",
    			tokenID:     "123456",
    			tokenSecret: "abcdef1234567890",
    			cfg: &kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

        %0 = "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, 1, 1, 1], explicit_paddings = [], padding = "VALID", strides = [1, 1, 2, 1], use_cudnn_on_gpu = true} : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
        %1 = "tf.BiasAdd"(%0, %arg2) {data_format = "NHWC", device = ""} : (tensor<*xf32>, tensor<2xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. src/net/http/cookie.go

    	case SameSiteStrictMode:
    		b.WriteString("; SameSite=Strict")
    	}
    	if c.Partitioned {
    		b.WriteString("; Partitioned")
    	}
    	return b.String()
    }
    
    // Valid reports whether the cookie is valid.
    func (c *Cookie) Valid() error {
    	if c == nil {
    		return errors.New("http: nil Cookie")
    	}
    	if !isCookieNameValid(c.Name) {
    		return errors.New("http: invalid Cookie.Name")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/unsafe/unsafe.go

    //
    // The following patterns involving Pointer are valid.
    // Code not using these patterns is likely to be invalid today
    // or to become invalid in the future.
    // Even the valid patterns below come with important caveats.
    //
    // Running "go vet" can help find uses of Pointer that do not conform to these patterns,
    // but silence from "go vet" is not a guarantee that the code is valid.
    //
    // (1) Conversion of a *T1 to Pointer to *T2.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/validation/validation_pluginargs_test.go

    		name     string
    		args     config.VolumeBindingArgs
    		features map[featuregate.Feature]bool
    		wantErr  error
    	}{
    		{
    			name: "zero is a valid config",
    			args: config.VolumeBindingArgs{
    				BindTimeoutSeconds: 0,
    			},
    		},
    		{
    			name: "positive value is valid config",
    			args: config.VolumeBindingArgs{
    				BindTimeoutSeconds: 10,
    			},
    		},
    		{
    			name: "negative value is invalid config ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  10. pkg/scheduler/apis/config/validation/validation_pluginargs.go

    	}
    	return nil
    }
    
    // validateMinCandidateNodesAbsolute validates that minCandidateNodesAbsolute
    // is within the allowed range.
    func validateMinCandidateNodesAbsolute(minCandidateNodesAbsolute int32, p *field.Path) *field.Error {
    	if minCandidateNodesAbsolute < 0 {
    		return field.Invalid(p, minCandidateNodesAbsolute, "not in valid range [0, inf)")
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 09:29:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top