Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 121 for 1000000000 (0.12 sec)

  1. guava/src/com/google/common/math/LongMath.java

      @VisibleForTesting
      static final long[] powersOf10 = {
        1L,
        10L,
        100L,
        1000L,
        10000L,
        100000L,
        1000000L,
        10000000L,
        100000000L,
        1000000000L,
        10000000000L,
        100000000000L,
        1000000000000L,
        10000000000000L,
        100000000000000L,
        1000000000000000L,
        10000000000000000L,
        100000000000000000L,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    					"runtime.walltime": (sp) => {
    						sp >>>= 0;
    						const msec = (new Date).getTime();
    						setInt64(sp + 8, msec / 1000);
    						this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
    					},
    
    					// func scheduleTimeoutEvent(delay int64) int32
    					"runtime.scheduleTimeoutEvent": (sp) => {
    						sp >>>= 0;
    						const id = this._nextCallbackTimeoutID;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K 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/net/ip.go

    // IPv4 address a.b.c.d.
    func IPv4(a, b, c, d byte) IP {
    	p := make(IP, IPv6len)
    	copy(p, v4InV6Prefix)
    	p[12] = a
    	p[13] = b
    	p[14] = c
    	p[15] = d
    	return p
    }
    
    var v4InV6Prefix = []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff}
    
    // IPv4Mask returns the IP mask (in 4-byte form) of the
    // IPv4 mask a.b.c.d.
    func IPv4Mask(a, b, c, d byte) IPMask {
    	p := make(IPMask, IPv4len)
    	p[0] = a
    	p[1] = b
    	p[2] = c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/sort/sort_test.go

    			lastA = d[i].a
    			lastB = d[i].b
    			continue
    		}
    		if d[i].b <= lastB {
    			return false
    		}
    		lastB = d[i].b
    	}
    	return true
    }
    
    func TestStability(t *testing.T) {
    	n, m := 100000, 1000
    	if testing.Short() {
    		n, m = 1000, 100
    	}
    	data := make(intPairs, n)
    
    	// random distribution
    	for i := 0; i < len(data); i++ {
    		data[i].a = rand.IntN(m)
    	}
    	if IsSorted(data) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier.go

    // KUBE-POSTROUTING  all  --  0.0.0.0/0            0.0.0.0/0            /* kubernetes postrouting rules *
    // Maintain by kubelet network sync loop
    
    // *nat
    // :KUBE-POSTROUTING - [0:0]
    // Chain KUBE-POSTROUTING (1 references)
    // target     prot opt source               destination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. src/runtime/gc_test.go

    	type T [2][2][2][2][2][2][2][2][2][2]*int
    	a := new(T)
    
    	// Prevent the compiler from applying escape analysis.
    	// This makes sure new(T) is allocated on heap, not on the stack.
    	t.Logf("%p", a)
    
    	a[0][0][0][0][0][0][0][0][0][0] = new(int)
    	*a[0][0][0][0][0][0][0][0][0][0] = 13
    	runtime.GC()
    	if *a[0][0][0][0][0][0][0][0][0][0] != 13 {
    		t.Fail()
    	}
    }
    
    func TestGcMapIndirection(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

            .writeByte(0b00000010)
            .writeByte(0b10001000)
            .writeByte(0b10000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
            .writeByte(0b00000000)
    
        val derReader = DerReader(buffer)
    
        assertFailsWith<ProtocolException> {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{decQuantity(1000000, 3, DecimalSI), "1G", ""},
    		{decQuantity(1000000000, 0, DecimalSI), "1G", ""},
    		{decQuantity(1, -3, DecimalSI), "1m", "1000u"},
    		{decQuantity(80, -3, DecimalSI), "80m", ""},
    		{decQuantity(1080, -3, DecimalSI), "1080m", "1.08"},
    		{decQuantity(108, -2, DecimalSI), "1080m", "1080000000n"},
    		{decQuantity(10800, -4, DecimalSI), "1080m", ""},
    		{decQuantity(300, 6, DecimalSI), "300M", ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CookieTest.kt

          .isEqualTo(0L)
        assertThat(parse(url, "a=b; Expires=Thu, 01 January 1970 00:00:00 GMT")!!.expiresAt)
          .isEqualTo(0L)
        assertThat(parse(url, "a=b; Expires=Thu, 01 Janucember 1970 00:00:00 GMT")!!.expiresAt)
          .isEqualTo(0L)
        assertThat(parse(url, "a=b; Expires=Thu, 1 Jan 1970 00:00:00 GMT")!!.expiresAt)
          .isEqualTo(0L)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top