Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for 1e23 (0.08 sec)

  1. pkg/apis/resource/validation/validation_resourceclass_test.go

    		},
    		"bad-parameters-namespace": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("parametersRef", "namespace"), badName, "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character (e.g. 'my-name',  or '123-abc', regex used for validation is '[a-z0-9]([-a-z0-9]*[a-z0-9])?')")},
    			class: func() *resource.ResourceClass {
    				class := testClass(goodName, goodName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  3. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  4. src/os/user/cgo_lookup_unix.go

    	return sz > 0 && sz <= maxBufferSize
    }
    
    // Because we can't use cgo in tests:
    func structPasswdForNegativeTest() _C_struct_passwd {
    	sp := _C_struct_passwd{}
    	*_C_pw_uidp(&sp) = 1<<32 - 2
    	*_C_pw_gidp(&sp) = 1<<32 - 3
    	return sp
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:08:14 UTC 2024
    - 5.2K 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. 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)
  7. 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)
  8. docs/en/docs/release-notes.md

    * 🌐 Add Japanese translation for `docs/ja/docs/tutorial/body-fields.md`. PR [#1923](https://github.com/tiangolo/fastapi/pull/1923) by [@SwftAlpc](https://github.com/SwftAlpc).
    * 🌐 Add German translation for `docs/de/docs/tutorial/index.md`. PR [#9502](https://github.com/tiangolo/fastapi/pull/9502) by [@fhabers21](https://github.com/fhabers21).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    				}
    			}
    		}
    
    		errs = AppendValidation(errs, validateExportTo(cfg.Namespace, serviceEntry.ExportTo, true, false))
    		return errs.Unwrap()
    	})
    
    // ValidatePortName validates a port name to DNS-1123
    func ValidatePortName(name string) error {
    	if !labels.IsDNS1123Label(name) {
    		return fmt.Errorf("invalid port name: %s", name)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    ```
    
    (2) For the following input of shape `[4, 1, 1, 3]` and block_size of 2:
    
    ```
    [[[[1, 2, 3]]], [[[4, 5, 6]]], [[[7, 8, 9]]], [[[10, 11, 12]]]]
    ```
    
    The output tensor has shape `[1, 2, 2, 3]` and value:
    
    ```
    x = [[[[1, 2, 3], [4, 5, 6]],
          [[7, 8, 9], [10, 11, 12]]]]
    ```
    
    (3) For the following input of shape `[4, 2, 2, 1]` and block_size of 2:
    
    ```
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top