Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for 1000000000 (0.1 sec)

  1. src/math/rand/v2/regress_test.go

    	int64(73220195),            // Int64N(1000000000)
    	int64(686060398),           // Int64N(1073741824)
    
    	int64(0),                   // IntN(1)
    	int64(6),                   // IntN(10)
    	int64(8),                   // IntN(32)
    	int64(704922),              // IntN(1048576)
    	int64(245656),              // IntN(1048577)
    	int64(41205257),            // IntN(1000000000)
    	int64(43831929),            // IntN(1073741824)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:03:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            assertEquals("1.0 GB", format.format(_999_megabytes, ScaleUnit.GIGABYTE));
    
            long _1000_megabytes = 1000L * 1000L * 1000L;
            assertEquals("1.0 GB", format.format(_1000_megabytes));
            assertEquals("1000000000 B", format.format(_1000_megabytes, ScaleUnit.BYTE));
            assertEquals("1000000 kB", format.format(_1000_megabytes, ScaleUnit.KILOBYTE));
            assertEquals("1000 MB", format.format(_1000_megabytes, ScaleUnit.MEGABYTE));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/runtime_test.go

    			div: 2,
    			ret: 4,
    			rem: 0,
    		},
    		{
    			num: 9,
    			div: 2,
    			ret: 4,
    			rem: 1,
    		},
    		{
    			// Used by runtime.check.
    			num: 12345*1000000000 + 54321,
    			div: 1000000000,
    			ret: 12345,
    			rem: 54321,
    		},
    		{
    			num: 1<<32 - 1,
    			div: 2,
    			ret: 1<<31 - 1, // no overflow.
    			rem: 1,
    		},
    		{
    			num: 1 << 32,
    			div: 2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_ppc64x.s

    	// we cannot receive another signal.
    	MOVD	40(R1), R6
    	MOVD	R6, m_vdsoSP(R21)
    	MOVD	32(R1), R6
    	MOVD	R6, m_vdsoPC(R21)
    
    return:
    	// sec is in R3, nsec in R5
    	// return nsec in R3
    	MOVD	$1000000000, R4
    	MULLD	R4, R3
    	ADD	R5, R3
    	MOVD	R3, ret+0(FP)
    	RET
    
    	// Syscall fallback
    fallback:
    	ADD	$32, R1, R4
    	SYSCALL $SYS_clock_gettime
    	MOVD	32(R1), R3
    	MOVD	40(R1), R5
    	JMP	return
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	t0 := runtime.Nanotime1()
    	var secrem uint32
    	var nsecrem uint32
    	total := time.Sec*1000000000 + time.Nsec
    	elapsed := runtime.Nanotime1() - t0
    	var rv int32
    	var rc int32
    	var err error
    	// repeatedly sleep for 1 second until less than 1 second left
    	for total-elapsed > 1000000000 {
    		rv, rc, _ = BpxCondTimedWait(uint32(1), uint32(0), uint32(CW_CONDVAR), &secrem, &nsecrem)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/cache.go

    func tempFile(ctx context.Context, dir, prefix string, perm fs.FileMode) (f *os.File, err error) {
    	for i := 0; i < 10000; i++ {
    		name := filepath.Join(dir, prefix+strconv.Itoa(rand.Intn(1000000000))+".tmp")
    		f, err = os.OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_EXCL, perm)
    		if os.IsExist(err) {
    			if ctx.Err() != nil {
    				return nil, ctx.Err()
    			}
    			continue
    		}
    		break
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    					Name:              "pc2",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Value:         1000000000,
    				GlobalDefault: true,
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"pc2", int64(1000000000), bool(true), "5m"}}},
    		},
    	}
    
    	for i, test := range tests {
    		rows, err := printPriorityClass(&test.pc, printers.GenerateOptions{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. 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)
  9. cluster/gce/gci/configure-kubeapiserver.sh

          # has an in-memory counter that doesn't notice if you truncate the file.
          # 2000000000 (in MiB) is a large number that fits in 31 bits. If the log
          # grows at 10MiB/s (~30K QPS), it will rotate after ~6 years if apiserver
          # never restarts. Please manually restart apiserver before this time.
          params+=" --audit-log-maxsize=2000000000"
    
          # Batching parameters
          if [[ -n "${ADVANCED_AUDIT_LOG_MODE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-AES256-SHA384

    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 3d 39 60 81 a4  |....z...v..=9`..|
    00000010  cc 92 5d fd 8b 21 58 da  2e 4c e2 70 2b 12 d2 8c  |..]..!X..L.p+...|
    00000020  35 55 bc ba 79 c1 9e 6f  78 8c cf 20 00 00 00 00  |5U..y..ox.. ....|
    00000030  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
    00000040  00 00 00 00 00 00 00 00  00 00 00 00 13 02 00 00  |................|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top