Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for 100000000000 (0.13 sec)

  1. pkg/kubelet/stats/cri_stats_provider_test.go

    					Timestamp: 1,
    					UsageCoreNanoSeconds: &runtimeapi.UInt64Value{
    						Value: 10000000000,
    					},
    				},
    			},
    			cpuUsageCache: map[string]*cpuUsageRecord{
    				"1": {
    					stats: &runtimeapi.CpuUsage{
    						Timestamp: 0,
    						UsageCoreNanoSeconds: &runtimeapi.UInt64Value{
    							Value: 10000000000,
    						},
    					},
    				},
    			},
    			expected: &value0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		// Things that saturate/round
    		{"3.001n", decQuantity(4, -9, DecimalSI)},
    		{"1.1E-9", decQuantity(2, -9, DecimalExponent)},
    		{"0.0000000001", decQuantity(1, -9, DecimalSI)},
    		{"0.0000000005", decQuantity(1, -9, DecimalSI)},
    		{"0.00000000050", decQuantity(1, -9, DecimalSI)},
    		{"0.5e-9", decQuantity(1, -9, DecimalExponent)},
    		{"0.9n", decQuantity(1, -9, DecimalSI)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  3. src/net/http/fs_test.go

    	fs := make(fakeFS)
    	for i, test := range tests {
    		testFile := &fakeFileInfo{basename: test.name}
    		fs[fmt.Sprintf("/%d", i)] = &fakeFileInfo{
    			dir:     true,
    			modtime: time.Unix(1000000000, 0).UTC(),
    			ents:    []*fakeFileInfo{testFile},
    		}
    		fs[fmt.Sprintf("/%d/%s", i, test.name)] = testFile
    	}
    
    	ts := newClientServerTest(t, mode, FileServer(&fs)).ts
    	for i, test := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/math/big/float_test.go

    		{"1.23", "1", Below},
    		{"-1.23", "-1", Above},
    		{"123e-2", "1", Below},
    		{"123e-3", "0", Below},
    		{"123e-4", "0", Below},
    		{"1e-1000", "0", Below},
    		{"-1e-1000", "0", Above},
    		{"1e+10", "10000000000", Exact},
    		{"1e+100", "10000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", Exact},
    	} {
    		x := makeFloat(test.x)
    		res, acc := x.Int(nil)
    		got := "nil"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    //
    // Server example:
    //
    //	fd, _ := Socket(AF_BLUETOOTH, SOCK_STREAM, BTPROTO_RFCOMM)
    //	_ = unix.Bind(fd, &unix.SockaddrRFCOMM{
    //		Channel: 1,
    //		Addr:    [6]uint8{0, 0, 0, 0, 0, 0}, // BDADDR_ANY or 00:00:00:00:00:00
    //	})
    //	_ = Listen(fd, 1)
    //	nfd, sa, _ := Accept(fd)
    //	fmt.Printf("conn addr=%v fd=%d", sa.(*unix.SockaddrRFCOMM).Addr, nfd)
    //	Read(nfd, buf)
    //
    // Client example:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top