Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 342 for B1000000 (0.1 sec)

  1. pkg/ctrlz/assets/templates/home.html

                    document.getElementById("NumGC").innerText = hi.NumGC.toLocaleString();
    
                    var d = new Date(hi.CurrentTime / 1000000).toLocaleString();
                    document.getElementById("CurrentTime").innerText = d;
    
                    updateRefreshTime();
                }
            }
    
            function onerror(e) {
                console.error(e);
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm64.s

    	FMOVD	F1, 0x44332211(R2)	// FMOVD	F1, 1144201745(R2)
    
    	MOVB	0x1000000(R1), R2	// MOVB		16777216(R1), R2
    	MOVB	0x44332211(R1), R2	// MOVB		1144201745(R1), R2
    	MOVH	0x1000000(R1), R2	// MOVH		16777216(R1), R2
    	MOVH	0x44332211(R1), R2	// MOVH		1144201745(R1), R2
    	MOVW	0x1000000(R1), R2	// MOVW		16777216(R1), R2
    	MOVW	0x44332211(R1), R2	// MOVW		1144201745(R1), R2
    	MOVD	0x1000000(R1), R2	// MOVD		16777216(R1), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/binaryinfo/DumpbinBinaryInfo.groovy

                // 005 00000000 SECT2  notype       Static       | .debug$S
                // 008 00000000 SECT3  notype       Static       | .debug$T
                // 00B 00000000 SECT4  notype       Static       | .text$mn
                // 00E 00000000 SECT5  notype       Static       | .debug$S
                // 011 00000000 UNDEF  notype ()    External     | ?life@@YAHXZ (int __cdecl life(void))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/crypto/internal/boring/div_test.c

    		*rp = x;
    	return q;
    }
    
    u32 tests[] = {
    	0,
    	1,
    	2,
    	3,
    	4,
    	5,
    	6,
    	7,
    	8,
    	9,
    	10,
    	11,
    	31,
    	0xFFF,
    	0x1000,
    	0x1001,
    	0xF0F0F0,
    	0xFFFFFF,
    	0x1000000,
    	0xF0F0F0F0,
    	0xFFFFFFFF,
    };
    
    int
    main(void)
    {
    	for(int i=0; i<nelem(tests); i++)
    	for(int j=0; j<nelem(tests); j++) {
    		u32 n = tests[i];
    		u32 d = tests[j];
    		if(d == 0)
    			continue;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  5. test/fixedbugs/issue9110.go

    // See golang.org/issue/9110.
    
    package main
    
    import (
    	"runtime"
    	"runtime/debug"
    	"sync"
    	"time"
    )
    
    func main() {
    	runtime.GOMAXPROCS(1)
    	debug.SetGCPercent(1000000) // only GC when we ask for GC
    
    	var stats, stats1, stats2 runtime.MemStats
    
    	release := func() {}
    	for i := 0; i < 20; i++ {
    		if i == 10 {
    			// Should be warmed up by now.
    			runtime.ReadMemStats(&stats1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  6. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				CPUCFSQuotaPeriod:                         &metav1.Duration{Duration: 100 * time.Millisecond},
    				NodeStatusMaxImages:                       utilpointer.Int32(50),
    				MaxOpenFiles:                              1000000,
    				ContentType:                               "application/vnd.kubernetes.protobuf",
    				KubeAPIQPS:                                utilpointer.Int32(50),
    				KubeAPIBurst:                              100,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. src/runtime/time_windows_386.s

    	// DI = nano/100/1e9 = nano/1e11 = sec/100, DX = SI = nano/100%1e9
    	// split DX into seconds and nanoseconds by div 1e7 magic multiply.
    	MOVL	DX, AX
    	MOVL	$1801439851, CX
    	MULL	CX
    	SHRL	$22, DX
    	MOVL	DX, BX
    	IMULL	$10000000, DX
    	MOVL	SI, CX
    	SUBL	DX, CX
    
    	// DI = sec/100 (still)
    	// BX = (nano/100%1e9)/1e7 = (nano/1e9)%100 = sec%100
    	// CX = (nano/100%1e9)%1e7 = (nano%1e9)/100 = nsec/100
    	// store nsec for return
    	IMULL	$100, CX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 17:19:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. test/fixedbugs/issue45242.go

    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    	b[2] = byte(v >> 16)
    	b[3] = byte(v >> 24)
    }
    
    func main() {
    	var b [8]byte
    	repro(b[:], 32)
    	want := [8]byte{1, 0, 0, 0, 0, 0, 0, 0}
    	if b != want {
    		panic(fmt.Sprintf("got %v, want %v\n", b, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 26 19:40:37 UTC 2021
    - 586 bytes
    - Viewed (0)
  9. src/net/http/internal/testcert/testcert.go

    // "127.0.0.1" and "[::1]", expiring at Jan 29 16:00:00 2084 GMT.
    // generated from src/crypto/tls:
    // go run generate_cert.go  --rsa-bits 2048 --host 127.0.0.1,::1,example.com --ca --start-date "Jan 1 00:00:00 1970" --duration=1000000h
    var LocalhostCert = []byte(`-----BEGIN CERTIFICATE-----
    MIIDOTCCAiGgAwIBAgIQSRJrEpBGFc7tNb1fb5pKFzANBgkqhkiG9w0BAQsFADAS
    MRAwDgYDVQQKEwdBY21lIENvMCAXDTcwMDEwMTAwMDAwMFoYDzIwODQwMTI5MTYw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jan 08 00:24:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  10. cmd/data-usage_test.go

    		{name: "rootfile2", size: 10000},
    		{name: "dir1/d1file", size: 2000},
    		{name: "dir2/d2file", size: 300},
    		{name: "dir1/dira/dafile", size: 100000},
    		{name: "dir1/dira/dbfile", size: 200000},
    		{name: "dir1/dira/dirasub/dcfile", size: 1000000},
    		{name: "dir1/dira/dirasub/sublevel3/dccccfile", size: 10},
    	}
    	createUsageTestFiles(t, base, bucket, files)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top