Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 79 for 1e23 (0.45 sec)

  1. src/math/big/floatconv_test.go

    		{1.2345e6, 'f', 5, "1234500.00000"},
    		{1.2345e6, 'g', 5, "1.2345e+06"},
    
    		{1e23, 'e', 17, "9.99999999999999916e+22"},
    		{1e23, 'f', 17, "99999999999999991611392.00000000000000000"},
    		{1e23, 'g', 17, "9.9999999999999992e+22"},
    
    		{1e23, 'e', -1, "1e+23"},
    		{1e23, 'f', -1, "100000000000000000000000"},
    		{1e23, 'g', -1, "1e+23"},
    
    		{below1e23, 'e', 17, "9.99999999999999748e+22"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
  2. src/math/big/ratconv_test.go

    	"82381273e-35",
    	"750486563e-38",
    	"3752432815e-39",
    	"75224575729e-45",
    	"459926601011e+15",
    
    	// Constants plundered from strconv/atof_test.go.
    
    	"0",
    	"1",
    	"+1",
    	"1e23",
    	"1E23",
    	"100000000000000000000000",
    	"1e-100",
    	"123456700",
    	"99999999999999974834176",
    	"100000000000000000000001",
    	"100000000000000008388608",
    	"100000000000000016777215",
    	"100000000000000016777216",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  3. src/strconv/atof_test.go

    	// Underscores.
    	{"1_23.50_0_0e+1_2", "1.235e+14", nil},
    	{"-_123.5e+12", "0", ErrSyntax},
    	{"+_123.5e+12", "0", ErrSyntax},
    	{"_123.5e+12", "0", ErrSyntax},
    	{"1__23.5e+12", "0", ErrSyntax},
    	{"123_.5e+12", "0", ErrSyntax},
    	{"123._5e+12", "0", ErrSyntax},
    	{"123.5_e+12", "0", ErrSyntax},
    	{"123.5__0e+12", "0", ErrSyntax},
    	{"123.5e_+12", "0", ErrSyntax},
    	{"123.5e+_12", "0", ErrSyntax},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 23.6K bytes
    - Viewed (0)
  4. src/strconv/eisel_lemire.go

    	{0x0000000000000000, 0x878678326EAC9000}, // 1e22
    	{0x0000000000000000, 0xA968163F0A57B400}, // 1e23
    	{0x0000000000000000, 0xD3C21BCECCEDA100}, // 1e24
    	{0x0000000000000000, 0x84595161401484A0}, // 1e25
    	{0x0000000000000000, 0xA56FA5B99019A5C8}, // 1e26
    	{0x0000000000000000, 0xCECB8F27F4200F3A}, // 1e27
    	{0x4000000000000000, 0x813F3978F8940984}, // 1e28
    	{0x5000000000000000, 0xA18F07D736B90BE5}, // 1e29
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 41.4K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/Collections2Test.java

        assertTrue(permutationSet.contains(newArrayList(1, 2, 3)));
        assertTrue(permutationSet.contains(newArrayList(2, 3, 1)));
        assertFalse(permutationSet.contains(newArrayList(1, 2)));
        assertFalse(permutationSet.contains(newArrayList(1, 1, 2, 3)));
        assertFalse(permutationSet.contains(newArrayList(1, 2, 3, 4)));
        assertFalse(permutationSet.contains(null));
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/securitycontext/accessors_test.go

    			}
    		}
    
    		// SupplementalGroups
    		{
    			modifiedSC := nonNilSC(tc.newSC())
    			m := NewPodSecurityContextMutator(tc.newSC())
    			modifiedSC.SupplementalGroups = []int64{1, 1, 2, 3}
    			m.SetSupplementalGroups([]int64{1, 1, 2, 3})
    			if !reflect.DeepEqual(m.PodSecurityContext(), modifiedSC) {
    				t.Errorf("%s: unexpected object:\n%s", k, diff.ObjectGoPrintSideBySide(modifiedSC, m.PodSecurityContext()))
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 22 16:15:27 UTC 2023
    - 27.8K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclassparameters_test.go

    		},
    		"bad-namespace": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "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])?')")},
    			parameters:   testResourceClassParameters(goodName, badName, goodFilters),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go

    }
    
    const dns1123LabelFmt string = "[a-z0-9]([-a-z0-9]*[a-z0-9])?"
    const dns1123LabelErrMsg string = "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character"
    
    // DNS1123LabelMaxLength is a label's max length in DNS (RFC 1123)
    const DNS1123LabelMaxLength int = 63
    
    var dns1123LabelRegexp = regexp.MustCompile("^" + dns1123LabelFmt + "$")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 16:08:43 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    			schedulingCtx: testPodSchedulingContexts("", goodNS, goodPodSchedulingSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
Back to top