Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for gbyte (0.09 sec)

  1. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (*AllocationResult) ProtoMessage() {}
    func (*AllocationResult) Descriptor() ([]byte, []int) {
    	return fileDescriptor_4312f5b44a31ec02, []int{0}
    }
    func (m *AllocationResult) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *AllocationResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    func (m *DaemonSet) Reset()      { *m = DaemonSet{} }
    func (*DaemonSet) ProtoMessage() {}
    func (*DaemonSet) Descriptor() ([]byte, []int) {
    	return fileDescriptor_90a532284de28347, []int{0}
    }
    func (m *DaemonSet) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *DaemonSet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    func (m *APIGroup) Reset()      { *m = APIGroup{} }
    func (*APIGroup) ProtoMessage() {}
    func (*APIGroup) Descriptor() ([]byte, []int) {
    	return fileDescriptor_a8431b6e0aeeb761, []int{0}
    }
    func (m *APIGroup) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *APIGroup) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    func (*ConversionRequest) ProtoMessage() {}
    func (*ConversionRequest) Descriptor() ([]byte, []int) {
    	return fileDescriptor_3623d6c0bd238430, []int{0}
    }
    func (m *ConversionRequest) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ConversionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    	b = b[:cap(b)]
    	n, err := m.MarshalToSizedBuffer(b)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    }
    
    func (f *http2Framer) writeByte(v byte) { f.wbuf = append(f.wbuf, v) }
    
    func (f *http2Framer) writeBytes(v []byte) { f.wbuf = append(f.wbuf, v...) }
    
    func (f *http2Framer) writeUint16(v uint16) { f.wbuf = append(f.wbuf, byte(v>>8), byte(v)) }
    
    func (f *http2Framer) writeUint32(v uint32) {
    	f.wbuf = append(f.wbuf, byte(v>>24), byte(v>>16), byte(v>>8), byte(v))
    }
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	{BRD, 0xfc0007fe00000000, 0x7c00017600000000, 0xf80100000000, // Byte-Reverse Doubleword X-form (brd RA,RS)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10}},
    	{BRH, 0xfc0007fe00000000, 0x7c0001b600000000, 0xf80100000000, // Byte-Reverse Halfword X-form (brh RA,RS)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10}},
    	{BRW, 0xfc0007fe00000000, 0x7c00013600000000, 0xf80100000000, // Byte-Reverse Word X-form (brw RA,RS)
    		[6]*argField{ap_Reg_11_15, ap_Reg_6_10}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    const SI_LOAD_SHIFT = 0x10
    
    type Utsname struct {
    	Sysname    [65]byte
    	Nodename   [65]byte
    	Release    [65]byte
    	Version    [65]byte
    	Machine    [65]byte
    	Domainname [65]byte
    }
    
    const (
    	AT_EMPTY_PATH   = 0x1000
    	AT_FDCWD        = -0x64
    	AT_NO_AUTOMOUNT = 0x800
    	AT_REMOVEDIR    = 0x200
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    
    <pre>
    s := make([]byte, 2, 4)
    
    a0 := [0]byte(s)
    a1 := [1]byte(s[1:])     // a1[0] == s[1]
    a2 := [2]byte(s)         // a2[0] == s[0]
    a4 := [4]byte(s)         // panics: len([4]byte) > len(s)
    
    s0 := (*[0]byte)(s)      // s0 != nil
    s1 := (*[1]byte)(s[1:])  // &amp;s1[0] == &amp;s[1]
    s2 := (*[2]byte)(s)      // &amp;s2[0] == &amp;s[0]
    s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    }
    
    func (x IngressControllerMode) Number() protoreflect.EnumNumber {
    	return protoreflect.EnumNumber(x)
    }
    
    // Deprecated: Use IngressControllerMode.Descriptor instead.
    func (IngressControllerMode) EnumDescriptor() ([]byte, []int) {
    	return file_pkg_apis_istio_v1alpha1_values_types_proto_rawDescGZIP(), []int{0}
    }
    
    // Specifies which tracer to use.
    type Tracer int32
    
    const (
    	Tracer_zipkin          Tracer = 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go

    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		return t.lookupValue(uint32(i), c1), 2
    	case c0 < 0xF0: // 3-byte UTF-8
    		if len(s) < 3 {
    			return 0, 0
    		}
    		i := nfcIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    		o := uint32(i)<<6 + uint32(c1)
    		i = nfcIndex[o]
    		c2 := s[2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 376.8K bytes
    - Viewed (0)
Back to top