Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 400 for 0x1f (0.05 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/schema/generated.pb.go

    	// 170 bytes of a gzipped FileDescriptorProto
    	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0xce, 0xa1, 0x0e, 0xc2, 0x30,
    	0x10, 0xc6, 0xf1, 0xd6, 0x22, 0x91, 0x88, 0x93, 0x73, 0xdc, 0x39, 0x82, 0x46, 0xf3, 0x04, 0xb8,
    	0x6e, 0x94, 0xae, 0x59, 0xba, 0x6b, 0xba, 0x4e, 0xe0, 0x78, 0x04, 0x1e, 0x6b, 0x72, 0x72, 0x92,
    	0x95, 0x17, 0x21, 0x69, 0x11, 0x48, 0xdc, 0xfd, 0xc5, 0xef, 0xf2, 0x6d, 0x0e, 0xdd, 0x71, 0x40,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. src/crypto/des/des_test.go

    			0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    			0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
    		[]byte{0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    		[]byte{0xc1, 0x97, 0xf5, 0x58, 0x74, 0x8a, 0x20, 0xe7}},
    	{
    		[]byte{
    			0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff,
    			0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
    			0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  3. src/debug/dwarf/const.go

    	AttrStmtList       Attr = 0x10
    	AttrLowpc          Attr = 0x11
    	AttrHighpc         Attr = 0x12
    	AttrLanguage       Attr = 0x13
    	AttrDiscr          Attr = 0x15
    	AttrDiscrValue     Attr = 0x16
    	AttrVisibility     Attr = 0x17
    	AttrImport         Attr = 0x18
    	AttrStringLength   Attr = 0x19
    	AttrCommonRef      Attr = 0x1A
    	AttrCompDir        Attr = 0x1B
    	AttrConstValue     Attr = 0x1C
    	AttrContainingType Attr = 0x1D
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go

    	IP_RECVRETOPTS                          = 0x6
    	IP_RECVTOS                              = 0x1b
    	IP_RECVTTL                              = 0x18
    	IP_RETOPTS                              = 0x8
    	IP_RF                                   = 0x8000
    	IP_RSVP_OFF                             = 0x10
    	IP_RSVP_ON                              = 0xf
    	IP_RSVP_VIF_OFF                         = 0x12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 87.5K bytes
    - Viewed (0)
  5. src/internal/bytealg/count_arm64.s

    	CMP	$0x20, R2
    	// jump directly to tail if length < 32
    	BLO	tail
    	ANDS	$0x1f, R0, R9
    	BEQ	chunk
    	// Work with not 32-byte aligned head
    	BIC	$0x1f, R0, R3
    	ADD	$0x20, R3
    	PCALIGN $16
    head_loop:
    	MOVBU.P	1(R0), R5
    	CMP	R5, R1
    	CINC	EQ, R11, R11
    	SUB	$1, R2, R2
    	CMP	R0, R3
    	BNE	head_loop
    	// Work with 32-byte aligned chunks
    chunk:
    	BIC	$0x1f, R2, R9
    	// The first chunk can also be the last
    	CBZ	R9, tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/encoding/base32/base32.go

    		lo := hi<<8 | uint32(src[si+4])
    
    		dst[di+0] = enc.encode[(hi>>27)&0x1F]
    		dst[di+1] = enc.encode[(hi>>22)&0x1F]
    		dst[di+2] = enc.encode[(hi>>17)&0x1F]
    		dst[di+3] = enc.encode[(hi>>12)&0x1F]
    		dst[di+4] = enc.encode[(hi>>7)&0x1F]
    		dst[di+5] = enc.encode[(hi>>2)&0x1F]
    		dst[di+6] = enc.encode[(lo>>5)&0x1F]
    		dst[di+7] = enc.encode[(lo)&0x1F]
    
    		si += 5
    		di += 8
    	}
    
    	// Add the remaining small block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.pb.go

    	0x28, 0xd7, 0xd9, 0x79, 0x95, 0xd3, 0xdd, 0x60, 0x34, 0x91, 0x22, 0xf7, 0x7f, 0x0f, 0x62, 0x1f,
    	0x35, 0xfe, 0xaa, 0x3f, 0xe7, 0x29, 0x98, 0x65, 0x4b, 0xb3, 0x4f, 0xdc, 0xe6, 0x96, 0xe4, 0x16,
    	0xe1, 0xff, 0x33, 0xd9, 0xec, 0x20, 0x63, 0xd7, 0x14, 0x1b, 0xa8, 0x14, 0x43, 0x5e, 0x24, 0x52,
    	0xf1, 0x97, 0xc7, 0x65, 0x0e, 0x8a, 0xcd, 0x17, 0x50, 0xe4, 0x50, 0xf3, 0x57, 0xc5, 0xad, 0xde,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. src/runtime/defs1_netbsd_arm.go

    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    	_SIGVTALRM = 0x1a
    	_SIGPROF   = 0x1b
    	_SIGWINCH  = 0x1c
    	_SIGINFO   = 0x1d
    	_SIGUSR1   = 0x1e
    	_SIGUSR2   = 0x1f
    
    	_FPE_INTDIV = 0x1
    	_FPE_INTOVF = 0x2
    	_FPE_FLTDIV = 0x3
    	_FPE_FLTOVF = 0x4
    	_FPE_FLTUND = 0x5
    	_FPE_FLTRES = 0x6
    	_FPE_FLTINV = 0x7
    	_FPE_FLTSUB = 0x8
    
    	_BUS_ADRALN = 0x1
    	_BUS_ADRERR = 0x2
    	_BUS_OBJERR = 0x3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/runtime/defs_openbsd_386.go

    	_SIGTTIN   = 0x15
    	_SIGTTOU   = 0x16
    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    	_SIGVTALRM = 0x1a
    	_SIGPROF   = 0x1b
    	_SIGWINCH  = 0x1c
    	_SIGINFO   = 0x1d
    	_SIGUSR1   = 0x1e
    	_SIGUSR2   = 0x1f
    
    	_FPE_INTDIV = 0x1
    	_FPE_INTOVF = 0x2
    	_FPE_FLTDIV = 0x3
    	_FPE_FLTOVF = 0x4
    	_FPE_FLTUND = 0x5
    	_FPE_FLTRES = 0x6
    	_FPE_FLTINV = 0x7
    	_FPE_FLTSUB = 0x8
    
    	_BUS_ADRALN = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. src/runtime/defs_openbsd_riscv64.go

    	_SIGTTIN   = 0x15
    	_SIGTTOU   = 0x16
    	_SIGIO     = 0x17
    	_SIGXCPU   = 0x18
    	_SIGXFSZ   = 0x19
    	_SIGVTALRM = 0x1a
    	_SIGPROF   = 0x1b
    	_SIGWINCH  = 0x1c
    	_SIGINFO   = 0x1d
    	_SIGUSR1   = 0x1e
    	_SIGUSR2   = 0x1f
    
    	_FPE_INTDIV = 0x1
    	_FPE_INTOVF = 0x2
    	_FPE_FLTDIV = 0x3
    	_FPE_FLTOVF = 0x4
    	_FPE_FLTUND = 0x5
    	_FPE_FLTRES = 0x6
    	_FPE_FLTINV = 0x7
    	_FPE_FLTSUB = 0x8
    
    	_BUS_ADRALN = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top