Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Typelen (0.17 sec)

  1. staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/certificates/v1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. api/go1.16.txt

    pkg syscall (darwin-arm64), type IfData struct, Reserved2 uint32
    pkg syscall (darwin-arm64), type IfData struct, Type uint8
    pkg syscall (darwin-arm64), type IfData struct, Typelen uint8
    pkg syscall (darwin-arm64), type IfData struct, Unused1 uint8
    pkg syscall (darwin-arm64), type IfData struct, Unused2 uint32
    pkg syscall (darwin-arm64), type IfData struct, Xmitquota uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 02 16:30:41 UTC 2022
    - 479.2K bytes
    - Viewed (0)
  4. src/encoding/gob/encode.go

    	if x <= 0x7F {
    		state.b.writeByte(uint8(x))
    		return
    	}
    
    	binary.BigEndian.PutUint64(state.buf[1:], x)
    	bc := bits.LeadingZeros64(x) >> 3      // 8 - bytelen(x)
    	state.buf[bc] = uint8(bc - uint64Size) // and then we subtract 8 to get -bytelen(x)
    
    	state.b.Write(state.buf[bc : uint64Size+1])
    }
    
    // encodeInt writes an encoded signed integer to state.w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1beta1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admission/v1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 46K bytes
    - Viewed (0)
  7. src/math/big/int_test.go

    			}
    
    			// Perfectly sized buffer.
    			byteLen := (x.BitLen() + 7) / 8
    			buf := make([]byte, byteLen)
    			checkResult(t, x.FillBytes(buf), x)
    
    			// Way larger, checking all bytes get zeroed.
    			buf = make([]byte, 100)
    			for i := range buf {
    				buf[i] = 0xff
    			}
    			checkResult(t, x.FillBytes(buf), x)
    
    			// Too small.
    			if byteLen > 0 {
    				buf = make([]byte, byteLen-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"IfData.Reserved1", Field, 0},
    		{"IfData.Reserved2", Field, 0},
    		{"IfData.Spare_char1", Field, 0},
    		{"IfData.Spare_char2", Field, 0},
    		{"IfData.Type", Field, 0},
    		{"IfData.Typelen", Field, 0},
    		{"IfData.Unused1", Field, 0},
    		{"IfData.Unused2", Field, 0},
    		{"IfData.Xmitquota", Field, 0},
    		{"IfData.Xmittiming", Field, 0},
    		{"IfInfomsg", Type, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg syscall (darwin-386), type IfData struct, Reserved1 uint32
    pkg syscall (darwin-386), type IfData struct, Reserved2 uint32
    pkg syscall (darwin-386), type IfData struct, Type uint8
    pkg syscall (darwin-386), type IfData struct, Typelen uint8
    pkg syscall (darwin-386), type IfData struct, Unused1 uint8
    pkg syscall (darwin-386), type IfData struct, Unused2 uint32
    pkg syscall (darwin-386), type IfData struct, Xmitquota uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    			}
    			var byteLen int
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return io.ErrUnexpectedEOF
    				}
    				b := dAtA[iNdEx]
    				iNdEx++
    				byteLen |= int(b&0x7F) << shift
    				if b < 0x80 {
    					break
    				}
    			}
    			if byteLen < 0 {
    				return ErrInvalidLengthGenerated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
Back to top