Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for 8388608 (0.12 sec)

  1. api/go1.10.txt

    pkg debug/macho, const FlagDyldLink = 4
    pkg debug/macho, const FlagDyldLink uint32
    pkg debug/macho, const FlagForceFlat = 256
    pkg debug/macho, const FlagForceFlat uint32
    pkg debug/macho, const FlagHasTLVDescriptors = 8388608
    pkg debug/macho, const FlagHasTLVDescriptors uint32
    pkg debug/macho, const FlagIncrLink = 2
    pkg debug/macho, const FlagIncrLink uint32
    pkg debug/macho, const FlagLazyInit = 64
    pkg debug/macho, const FlagLazyInit uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 05:00:01 UTC 2018
    - 30.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/metrics_test.go

    			apiserver_storage_transformation_duration_seconds_bucket{transformation_type="from_storage",transformer_prefix="k8s:enc:kms:v1:",le="83.88608"} 1
    			apiserver_storage_transformation_duration_seconds_bucket{transformation_type="from_storage",transformer_prefix="k8s:enc:kms:v1:",le="+Inf"} 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  3. src/strconv/atof_test.go

    	{"0x0.0000007p-125", "0", nil},             // rounded down
    
    	// 2^92 = 8388608p+69 = 4951760157141521099596496896 (4.9517602e27)
    	// is an exact power of two that needs 8 decimal digits to be correctly
    	// parsed back.
    	// The float32 before is 16777215p+68 = 4.95175986e+27
    	// The halfway is 4.951760009. A bad algorithm that thinks the previous
    	// float32 is 8388607p+69 will shorten incorrectly to 4.95176e+27.
    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/time/sleep_test.go

    		}
    	}
    }
    
    // Benchmark timer latency when the thread that creates the timer is busy with
    // other work and the timers must be serviced by other threads.
    // https://golang.org/issue/38860
    func BenchmarkParallelTimerLatency(b *testing.B) {
    	gmp := runtime.GOMAXPROCS(0)
    	if gmp < 2 || runtime.NumCPU() < gmp {
    		b.Skip("skipping with GOMAXPROCS < 2 or NumCPU < GOMAXPROCS")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:33:57 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  5. src/math/big/floatconv_test.go

    		{"% .3E", -1.0, "-1.000E+00"},
    		{"% .3e", 1.0, " 1.000e+00"},
    		{"%+.3g", 0.0, "+0"},
    		{"%+.3g", 1.0, "+1"},
    		{"%+.3g", -1.0, "-1"},
    		{"% .3g", -1.0, "-1"},
    		{"% .3g", 1.0, " 1"},
    		{"%b", float32(1.0), "8388608p-23"},
    		{"%b", 1.0, "4503599627370496p-52"},
    
    		// from fmt/fmt_test.go: old test/fmt_test.go
    		{"%e", 1.0, "1.000000e+00"},
    		{"%e", 1234.5678e3, "1.234568e+06"},
    		{"%e", 1234.5678e-8, "1.234568e-05"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 24.3K bytes
    - Viewed (0)
Back to top