Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 222 for 1e23 (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	1019: {region: 0x9f, script: 0x5b, flags: 0x0},
    	1020: {region: 0x9d, script: 0x5, flags: 0x0},
    	1021: {region: 0xdb, script: 0x5b, flags: 0x0},
    	1022: {region: 0x4f, script: 0x5b, flags: 0x0},
    	1023: {region: 0xd2, script: 0x5b, flags: 0x0},
    	1024: {region: 0xd0, script: 0x5b, flags: 0x0},
    	1025: {region: 0xc4, script: 0x5b, flags: 0x0},
    	1026: {region: 0x4c, script: 0x5b, flags: 0x0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	/*1215*/ uint16(xSetOp), uint16(STR),
    	/*1217*/ uint16(xArgR32M16),
    	/*1218*/ uint16(xMatch),
    	/*1219*/ uint16(xSetOp), uint16(STR),
    	/*1221*/ uint16(xArgR64M16),
    	/*1222*/ uint16(xMatch),
    	/*1223*/ uint16(xSetOp), uint16(LLDT),
    	/*1225*/ uint16(xArgRM16),
    	/*1226*/ uint16(xMatch),
    	/*1227*/ uint16(xSetOp), uint16(LTR),
    	/*1229*/ uint16(xArgRM16),
    	/*1230*/ uint16(xMatch),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    //   input = [1, 2]
    //   depth = 4
    //   filter = [[5, 7, 11, 13], [17, 19, 23, 29]]
    // then:
    //   onehot = [[0, 1, 0, 0], [0, 0, 1, 0]]
    //   result = [[ 7, 19],   # == 1st column in filter
    //             [11, 23]]   # == 2nd column in filter
    // This is exactly what the EmbeddedLookup operator is doing, on the transposed
    // matrix, without doing any arithmetic but only memcpy.
    def ReplaceOneHotFullyConnectedWithLookup : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. src/time/format.go

    	// 2-digit and 4-digit fields are the most common in time formats.
    	utod := func(u uint) byte { return '0' + byte(u) }
    	switch {
    	case width == 2 && u < 1e2:
    		return append(b, utod(u/1e1), utod(u%1e1))
    	case width == 4 && u < 1e4:
    		return append(b, utod(u/1e3), utod(u/1e2%1e1), utod(u/1e1%1e1), utod(u%1e1))
    	}
    
    	// Compute the number of decimal digits.
    	var n int
    	if u == 0 {
    		n = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zerrors_windows.go

    	ERROR_FLOPPY_ID_MARK_NOT_FOUND                                            syscall.Errno = 1122
    	ERROR_FLOPPY_WRONG_CYLINDER                                               syscall.Errno = 1123
    	ERROR_FLOPPY_UNKNOWN_ERROR                                                syscall.Errno = 1124
    	ERROR_FLOPPY_BAD_REGISTERS                                                syscall.Errno = 1125
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 923.3K bytes
    - Viewed (0)
Back to top