Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 4,064 for gbyte (0.09 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go

    	Ngroups int16
    	Groups  [16]uint32
    	_       *byte
    }
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  2. src/net/http/sniff_test.go

    	{"GIF 87a", []byte(`GIF87a`), "image/gif"},
    	{"GIF 89a", []byte(`GIF89a...`), "image/gif"},
    	{"WEBP image", []byte("RIFF\x00\x00\x00\x00WEBPVP"), "image/webp"},
    	{"PNG image", []byte("\x89PNG\x0D\x0A\x1A\x0A"), "image/png"},
    	{"JPEG image", []byte("\xFF\xD8\xFF"), "image/jpeg"},
    
    	// Audio types.
    	{"MIDI audio", []byte("MThd\x00\x00\x00\x06\x00\x01"), "audio/midi"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 16:53:14 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go

    	Ver             uint32
    	X__rsvd         uint32
    	Un              [16]byte
    	X_sysctl_size   [8]byte
    	X_sysctl_func   [8]byte
    	X_sysctl_parent [8]byte
    	X_sysctl_desc   [8]byte
    }
    
    type Utsname struct {
    	Sysname  [256]byte
    	Nodename [256]byte
    	Release  [256]byte
    	Version  [256]byte
    	Machine  [256]byte
    }
    
    const SizeofUvmexp = 0x278
    
    type Uvmexp struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. src/internal/fuzz/mutators_byteslice.go

    func byteSliceOverwriteBytes(m *mutator, b []byte) []byte {
    	if len(b) <= 1 {
    		return nil
    	}
    	src := m.rand(len(b))
    	dst := m.rand(len(b))
    	for dst == src {
    		dst = m.rand(len(b))
    	}
    	n := m.chooseLen(len(b) - src - 1)
    	copy(b[dst:], b[src:src+n])
    	return b
    }
    
    // byteSliceBitFlip flips a random bit in a random byte in b.
    func byteSliceBitFlip(m *mutator, b []byte) []byte {
    	if len(b) == 0 {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 19 18:23:43 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go

    	Ngroups int16
    	Groups  [16]uint32
    	_       *byte
    }
    
    type Linger struct {
    	Onoff  int32
    	Linger int32
    }
    
    type Iovec struct {
    	Base *byte
    	Len  uint32
    }
    
    type IPMreq struct {
    	Multiaddr [4]byte /* in_addr */
    	Interface [4]byte /* in_addr */
    }
    
    type IPMreqn struct {
    	Multiaddr [4]byte /* in_addr */
    	Address   [4]byte /* in_addr */
    	Ifindex   int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. src/internal/fuzz/minimize_test.go

    				}
    				if bytes.Equal(b, []byte{0, 1, 2, 3, 4, 5}) || bytes.Equal(b, []byte{0, 4, 5}) {
    					return fmt.Errorf("bad %v", e.Values[0])
    				}
    				return nil
    			},
    			input:    []any{[]byte{0, 1, 2, 3, 4, 5}},
    			expected: []any{[]byte{0, 4, 5}},
    		},
    		{
    			name: "non_ascii_bytes",
    			fn: func(e CorpusEntry) error {
    				b := e.Values[0].([]byte)
    				if len(b) == 3 {
    					return fmt.Errorf("bad %v", e.Values[0])
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 12 19:47:40 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. src/crypto/internal/hpke/hpke.go

    type hkdfKDF struct {
    	hash crypto.Hash
    }
    
    func (kdf *hkdfKDF) LabeledExtract(suiteID []byte, salt []byte, label string, inputKey []byte) []byte {
    	labeledIKM := make([]byte, 0, 7+len(suiteID)+len(label)+len(inputKey))
    	labeledIKM = append(labeledIKM, []byte("HPKE-v1")...)
    	labeledIKM = append(labeledIKM, suiteID...)
    	labeledIKM = append(labeledIKM, label...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  8. internal/s3select/sql/value_test.go

    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "truetabs",
    			fields: fields{
    				value: []byte("\ttrue\t"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "TRUE",
    			fields: fields{
    				value: []byte("TRUE"),
    			},
    			wantVal: true,
    			wantOk:  true,
    		},
    		{
    			name: "FALSE",
    			fields: fields{
    				value: []byte("FALSE"),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

        private static final byte FILE_VALUE = (byte) 8;
        private static final byte NULL_VALUE = (byte) 9;
        private static final byte SERIALIZED_VALUE = (byte) 10;
        private static final byte ENUM_VALUE = (byte) 11;
        private static final byte ISOLATED_MAP = (byte) 12;
        private static final byte ISOLATED_ARRAY = (byte) 13;
        private static final byte ISOLATED_LIST = (byte) 14;
        private static final byte ISOLATED_SET = (byte) 15;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		{map[string][]byte{".foo.example.com": []byte("bar")}, dns1123SubdomainErrorMsg},
    		{map[string][]byte{"*.example.com": []byte("bar")}, dns1123SubdomainErrorMsg},
    		{map[string][]byte{"*.bar.com": []byte("bar")}, dns1123SubdomainErrorMsg},
    		{map[string][]byte{"*.foo.bar.com": []byte("bar")}, dns1123SubdomainErrorMsg},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
Back to top