Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 408 for 0_80 (0.1 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    	0xe6, 0x3b, 0x06, 0x2c, 0xea, 0x92, 0xd2, 0x1f, 0x5f, 0x7a, 0x25, 0xe7, 0x67, 0x7b, 0xda, 0x8e,
    	0xfc, 0xca, 0x80, 0xe5, 0xc4, 0xd2, 0xa6, 0x3a, 0xf1, 0x29, 0x8c, 0xd2, 0x9d, 0x23, 0x3b, 0x85,
    	0x73, 0xfc, 0x25, 0x03, 0x95, 0x5b, 0xd6, 0x01, 0x71, 0xf7, 0x89, 0x4b, 0x5a, 0x81, 0x4f, 0xd1,
    	0x0f, 0xa0, 0xd4, 0xb1, 0x82, 0xd6, 0x91, 0x80, 0x86, 0x95, 0x41, 0x33, 0x5d, 0xb0, 0x4b, 0x48,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go

    	IGNBRK                            = 0x1
    	IGNCR                             = 0x80
    	IGNPAR                            = 0x4
    	IMAXBEL                           = 0x2000
    	INLCR                             = 0x40
    	INPCK                             = 0x10
    	IN_CLASSA_HOST                    = 0xffffff
    	IN_CLASSA_MAX                     = 0x80
    	IN_CLASSA_NET                     = 0xff000000
    	IN_CLASSA_NSHIFT                  = 0x18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  3. src/runtime/utf8.go

    	runeSelf  = 0x80         // characters below runeSelf are represented as themselves in a single byte.
    	maxRune   = '\U0010FFFF' // Maximum valid Unicode code point.
    )
    
    // Code points in the surrogate range are not valid for UTF-8.
    const (
    	surrogateMin = 0xD800
    	surrogateMax = 0xDFFF
    )
    
    const (
    	t1 = 0x00 // 0000 0000
    	tx = 0x80 // 1000 0000
    	t2 = 0xC0 // 1100 0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 06 02:46:02 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. src/syscall/zerrors_dragonfly_amd64.go

    	BPF_LD                            = 0x0
    	BPF_LDX                           = 0x1
    	BPF_LEN                           = 0x80
    	BPF_LSH                           = 0x60
    	BPF_MAJOR_VERSION                 = 0x1
    	BPF_MAXBUFSIZE                    = 0x80000
    	BPF_MAXINSNS                      = 0x200
    	BPF_MAX_CLONES                    = 0x80
    	BPF_MEM                           = 0x60
    	BPF_MEMWORDS                      = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 59.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1beta3/generated.pb.go

    	0xc4, 0x3a, 0x94, 0x52, 0x6e, 0x9b, 0x55, 0x9f, 0xc0, 0xf8, 0xc3, 0x80, 0x04, 0xa6, 0x6d, 0x88,
    	0x79, 0x7d, 0x2e, 0x2b, 0xc0, 0x9b, 0xa1, 0x7a, 0xaa, 0xda, 0xd4, 0x49, 0x36, 0x02, 0xc4, 0x09,
    	0x8e, 0x10, 0xe5, 0xbf, 0x73, 0x70, 0x94, 0x3b, 0x26, 0xb5, 0x01, 0x5b, 0xf9, 0x5e, 0xe6, 0x56,
    	0x5e, 0x16, 0xd1, 0x1c, 0x64, 0x33, 0x3f, 0x80, 0xe9, 0x46, 0x7b, 0xec, 0x22, 0xcc, 0x93, 0x59,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 141.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	IGNBRK                            = 0x1
    	IGNCR                             = 0x80
    	IGNPAR                            = 0x4
    	IMAXBEL                           = 0x2000
    	INLCR                             = 0x40
    	INPCK                             = 0x10
    	IN_CLASSA_HOST                    = 0xffffff
    	IN_CLASSA_MAX                     = 0x80
    	IN_CLASSA_NET                     = 0xff000000
    	IN_CLASSA_NSHIFT                  = 0x18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  7. src/encoding/binary/varint.go

    func AppendUvarint(buf []byte, x uint64) []byte {
    	for x >= 0x80 {
    		buf = append(buf, byte(x)|0x80)
    		x >>= 7
    	}
    	return append(buf, byte(x))
    }
    
    // PutUvarint encodes a uint64 into buf and returns the number of bytes written.
    // If the buffer is too small, PutUvarint will panic.
    func PutUvarint(buf []byte, x uint64) int {
    	i := 0
    	for x >= 0x80 {
    		buf[i] = byte(x) | 0x80
    		x >>= 7
    		i++
    	}
    	buf[i] = byte(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/syscall/zerrors_linux_ppc64le.go

    	BPF_NEG                          = 0x80
    	BPF_OR                           = 0x40
    	BPF_RET                          = 0x6
    	BPF_RSH                          = 0x70
    	BPF_ST                           = 0x2
    	BPF_STX                          = 0x3
    	BPF_SUB                          = 0x10
    	BPF_TAX                          = 0x0
    	BPF_TXA                          = 0x80
    	BPF_W                            = 0x0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 71.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/generated.pb.go

    			wire |= (uint64(b) & 0x7F) << shift
    			if b < 0x80 {
    				break
    			}
    		}
    		wireType := int(wire & 0x7)
    		switch wireType {
    		case 0:
    			for shift := uint(0); ; shift += 7 {
    				if shift >= 64 {
    					return 0, ErrIntOverflowGenerated
    				}
    				if iNdEx >= l {
    					return 0, io.ErrUnexpectedEOF
    				}
    				iNdEx++
    				if dAtA[iNdEx-1] < 0x80 {
    					break
    				}
    			}
    		case 1:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 133K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	BPF_NEG                        = 0x80
    	BPF_OR                         = 0x40
    	BPF_RELEASE                    = 0x30bb6
    	BPF_RET                        = 0x6
    	BPF_RSH                        = 0x70
    	BPF_ST                         = 0x2
    	BPF_STX                        = 0x3
    	BPF_SUB                        = 0x10
    	BPF_TAX                        = 0x0
    	BPF_TXA                        = 0x80
    	BPF_T_BINTIME                  = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
Back to top