Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,949 for gbyte (0.04 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    var UnitTypes = []UnitType{{
    	Units: []Unit{
    		{"B", []string{"b", "byte"}, 1},
    		{"kB", []string{"kb", "kbyte", "kilobyte"}, float64(1 << 10)},
    		{"MB", []string{"mb", "mbyte", "megabyte"}, float64(1 << 20)},
    		{"GB", []string{"gb", "gbyte", "gigabyte"}, float64(1 << 30)},
    		{"TB", []string{"tb", "tbyte", "terabyte"}, float64(1 << 40)},
    		{"PB", []string{"pb", "pbyte", "petabyte"}, float64(1 << 50)},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. src/runtime/memmove_test.go

    		{"4byte", 4, func(buf []byte) uint64 { return uint64(binary.LittleEndian.Uint32(buf)) }},
    		{"8byte", 8, func(buf []byte) uint64 { return binary.LittleEndian.Uint64(buf) }},
    	}
    
    	var g [4096]byte
    	for _, bm := range benchmarks {
    		buf := make([]byte, bm.nbyte)
    		b.Run(bm.name, func(b *testing.B) {
    			for j := 0; j < b.N; j++ {
    				for i := 0; i < 4096; i += bm.nbyte {
    					copy(buf[:], g[i:])
    					sink += bm.f(buf[:])
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:12 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go

    	SYS_READ           = 3   // { ssize_t sys_read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE          = 4   // { ssize_t sys_write(int fd, const void *buf, size_t nbyte); }
    	SYS_OPEN           = 5   // { int sys_open(const char *path, int flags, ... mode_t mode); }
    	SYS_CLOSE          = 6   // { int sys_close(int fd); }
    	SYS_GETENTROPY     = 7   // { int sys_getentropy(void *buf, size_t nbyte); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. src/crypto/subtle/xor_amd64.s

    	MOVOU (CX)(AX*1), X1
    	PXOR  X1, X0
    	MOVOU X0, (BX)(AX*1)
    	ADDQ  $16, AX
    	CMPQ  DX, AX
    	JNE   loop16b
    	RET
    
    	PCALIGN $16
    loop_1b:
    	SUBQ  $1, DX           // XOR 1byte backwards.
    	MOVB  (SI)(DX*1), DI
    	MOVB  (CX)(DX*1), AX
    	XORB  AX, DI
    	MOVB  DI, (BX)(DX*1)
    	TESTQ $7, DX           // AND 7 & len, if not zero jump to loop_1b.
    	JNZ   loop_1b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 18:14:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/filter_test.go

    	f1 := Filter{
    		set: true,
    		Prefix: Prefix{
    			string: "doc/",
    			set:    true,
    			Unused: struct{}{},
    		},
    		ObjectSizeGreaterThan: 100 * humanize.MiByte,
    		ObjectSizeLessThan:    100 * humanize.GiByte,
    	}
    	b, err := xml.Marshal(f1)
    	if err != nil {
    		t.Fatalf("Failed to marshal %v", f1)
    	}
    	var f2 Filter
    	err = xml.Unmarshal(b, &f2)
    	if err != nil {
    		t.Fatalf("Failed to unmarshal %s", string(b))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 27 00:01:20 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    // be used to recombine characters.  Note that the byte buffer does not hold
    // the UTF-8 characters in order.  Only the rune array is maintained in sorted
    // order. flush writes the resulting segment to a byte array.
    type reorderBuffer struct {
    	rune  [maxBufferSize]Properties // Per character info.
    	byte  [maxByteBufferSize]byte   // UTF-8 buffer. Referenced by runeInfo.pos.
    	nbyte uint8                     // Number or bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 0);
        assertThat(b).isEqualTo(new byte[10]);
    
        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 10);
        assertThat(b).isEqualTo(newPreFilledByteArray(10));
    
        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 5);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go

    	SYS_FORK                     = 2   // { int fork(void); }
    	SYS_READ                     = 3   // { ssize_t read(int fd, void *buf, size_t nbyte); }
    	SYS_WRITE                    = 4   // { ssize_t write(int fd, const void *buf, size_t nbyte); }
    	SYS_OPEN                     = 5   // { int open(char *path, int flags, int mode); }
    	SYS_CLOSE                    = 6   // { int close(int fd); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/unicode/norm/input.go

    type input struct {
    	str   string
    	bytes []byte
    }
    
    func inputBytes(str []byte) input {
    	return input{bytes: str}
    }
    
    func inputString(str string) input {
    	return input{str: str}
    }
    
    func (in *input) setBytes(str []byte) {
    	in.str = ""
    	in.bytes = str
    }
    
    func (in *input) setString(str string) {
    	in.str = str
    	in.bytes = nil
    }
    
    func (in *input) _byte(p int) byte {
    	if in.bytes == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is Boolean -> KaConstantValue.KaBooleanConstantValue(value, expression)
            is Char -> KaConstantValue.KaCharConstantValue(value, expression)
            is Byte -> KaConstantValue.KaByteConstantValue(value, expression)
            is UByte -> KaConstantValue.KaUnsignedByteConstantValue(value, expression)
            is Short -> KaConstantValue.KaShortConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top