Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for 1e23 (0.12 sec)

  1. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    string `kubernetes.io/job-controller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be valid HTTP Path characters as defined by RFC 3986. The value cannot exceed 63 characters. This field is immutable.\n\nThis field is alpha-level. The job controller accepts setting the field when the...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/generated.proto

      // reconciling Jobs with a custom value for this field.
      // The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
      // all characters before the first "/" must be a valid subdomain as defined
      // by RFC 1123. All characters trailing the first "/" must be valid HTTP Path
      // characters as defined by RFC 3986. The value cannot exceed 63 characters.
      // This field is immutable.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/builtins0.go

    	_ = assert(max(1, 2.3) == 2.3)
    	_ = assert(max(1, 2.3, 'a') == 'a')
    
    	_ = assert(max("", "a") == "a")
    	_ = assert(max("abcde", "xyz", "foo", "bar") == "xyz")
    
    	const (
    		_ int = max(1.0)
    		_ float32 = max(1, 2)
    		_ int = max /* ERROR "cannot use max(1, 2.3) (untyped float constant 2.3) as int value" */ (1, 2.3)
    		_ int = max(1.2, 3) // ok!
    		_ byte = max(1, 'a')
    	)
    }
    
    func min1() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  4. pkg/controller/volume/persistentvolume/framework_test.go

    // volumes/claims (with ~10 second timeout).
    func (r *volumeReactor) waitTest(test controllerTest) error {
    	// start with 10 ms, multiply by 2 each step, 10 steps = 10.23 seconds
    	backoff := wait.Backoff{
    		Duration: 10 * time.Millisecond,
    		Jitter:   0,
    		Factor:   2,
    		Steps:    10,
    	}
    	err := wait.ExponentialBackoff(backoff, func() (done bool, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  5. src/slices/slices_test.go

    	{
    		nil,
    		func(int) bool { return true },
    		nil,
    	},
    	{
    		[]int{1, 2, 3},
    		func(int) bool { return true },
    		nil,
    	},
    	{
    		[]int{1, 2, 3},
    		func(int) bool { return false },
    		[]int{1, 2, 3},
    	},
    	{
    		[]int{1, 2, 3},
    		func(i int) bool { return i > 2 },
    		[]int{1, 2},
    	},
    	{
    		[]int{1, 2, 3},
    		func(i int) bool { return i < 2 },
    		[]int{2, 3},
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:06 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    	// +optional
    	KubernetesVersion string `json:"kubernetesVersion,omitempty"`
    
    	// ControlPlaneEndpoint sets a stable IP address or DNS name for the control plane; it
    	// can be a valid IP address or a RFC-1123 DNS subdomain, both with optional TCP port.
    	// In case the ControlPlaneEndpoint is not specified, the AdvertiseAddress + BindPort
    	// are used; in case the ControlPlaneEndpoint is specified but without a TCP port,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    	// reconciling Jobs with a custom value for this field.
    	// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
    	// all characters before the first "/" must be a valid subdomain as defined
    	// by RFC 1123. All characters trailing the first "/" must be valid HTTP Path
    	// characters as defined by RFC 3986. The value cannot exceed 63 characters.
    	// This field is immutable.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. pkg/apis/batch/types.go

    	// reconciling Jobs with a custom value for this field.
    	// The value must be a valid domain-prefixed path (e.g. acme.io/foo) -
    	// all characters before the first "/" must be a valid subdomain as defined
    	// by RFC 1123. All characters trailing the first "/" must be valid HTTP Path
    	// characters as defined by RFC 3986. The value cannot exceed 63 characters.
    	// This field is immutable.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. src/math/big/float.go

    			dmin  = 1 - bias - mbits  // -1074  smallest unbiased exponent (denormal)
    			emin  = 1 - bias          // -1022  smallest unbiased exponent (normal)
    			emax  = bias              //  1023  largest unbiased exponent (normal)
    		)
    
    		// Float mantissa m is 0.5 <= m < 1.0; compute exponent e for float64 mantissa.
    		e := x.exp - 1 // exponent for normal mantissa m with 1.0 <= m < 2.0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top