Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 121 for 0_80 (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/v2/api.pb.go

    	0x0e, 0xe9, 0xab, 0x71, 0x80, 0x2f, 0xd0, 0xd9, 0x60, 0xe8, 0xf5, 0xc3, 0x60, 0xd0, 0x75, 0xaf,
    	0x6f, 0xc2, 0x97, 0xd1, 0x78, 0xd4, 0xa3, 0xe1, 0x9a, 0x09, 0x28, 0xf5, 0x0c, 0xed, 0xbe, 0xf3,
    	0x76, 0x17, 0xb7, 0x33, 0x27, 0xe2, 0x84, 0xa5, 0x51, 0x06, 0x42, 0x81, 0x20, 0x69, 0x3c, 0x23,
    	0x99, 0xe4, 0x82, 0xcd, 0x80, 0x14, 0xce, 0xe4, 0xe7, 0x33, 0x04, 0x12, 0x05, 0x73, 0x9e, 0x02,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 18:43:30 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. src/runtime/defs_linux_arm64.go

    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x0 // Only used on intel
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/syscall/wtf8_windows.go

    		r, size := utf8.DecodeRuneInString(s[i:])
    		if r == utf8.RuneError {
    			// Check if s[i:] contains a valid WTF-8 encoded surrogate.
    			if sc := s[i:]; len(sc) >= 3 && sc[0] == 0xED && 0xA0 <= sc[1] && sc[1] <= 0xBF && 0x80 <= sc[2] && sc[2] <= 0xBF {
    				r = rune(sc[0]&mask3)<<12 + rune(sc[1]&maskx)<<6 + rune(sc[2]&maskx)
    				buf = append(buf, uint16(r))
    				i += 3
    				continue
    			}
    		}
    		i += size
    		buf = utf16.AppendRune(buf, r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 09:26:16 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/runtime/defs1_solaris_amd64.go

    	__SC_PAGESIZE         = 0xb
    	__SC_NPROCESSORS_ONLN = 0xf
    
    	_PTHREAD_CREATE_DETACHED = 0x40
    
    	_FORK_NOSIGCHLD = 0x1
    	_FORK_WAITPID   = 0x2
    
    	_MAXHOSTNAMELEN = 0x100
    
    	_O_WRONLY   = 0x1
    	_O_NONBLOCK = 0x80
    	_O_TRUNC    = 0x200
    	_O_CREAT    = 0x100
    	_O_CLOEXEC  = 0x800000
    
    	_POLLIN  = 0x1
    	_POLLOUT = 0x4
    	_POLLHUP = 0x10
    	_POLLERR = 0x8
    
    	_PORT_SOURCE_FD    = 0x4
    	_PORT_SOURCE_ALERT = 0x5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:40:51 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. src/internal/coverage/slicereader/slicereader.go

    	r.off += 8
    	return rv
    }
    
    func (r *Reader) ReadULEB128() (value uint64) {
    	var shift uint
    
    	for {
    		b := r.b[r.off]
    		r.off++
    		value |= (uint64(b&0x7F) << shift)
    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return
    }
    
    func (r *Reader) ReadString(len int64) string {
    	b := r.b[r.off : r.off+len]
    	r.off += len
    	if r.readonly {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/runtime/defs_linux_ppc64.go

    	_MADV_DONTNEED   = 0x4
    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART = 0x10000000
    	_SA_ONSTACK = 0x8000000
    	_SA_SIGINFO = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. build-logic/settings.gradle.kts

     */
    
    pluginManagement {
        includeBuild("../build-logic-commons")
        repositories {
            gradlePluginPortal()
        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    dependencyResolutionManagement {
        repositories {
            maven {
                name = "Develocity release candidates"
                url = uri("https://repo.gradle.org/gradle/enterprise-libs-release-candidates")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:29:44 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/defs_linux_riscv64.go

    	_MADV_FREE       = 0x8
    	_MADV_HUGEPAGE   = 0xe
    	_MADV_NOHUGEPAGE = 0xf
    	_MADV_COLLAPSE   = 0x19
    
    	_SA_RESTART  = 0x10000000
    	_SA_ONSTACK  = 0x8000000
    	_SA_RESTORER = 0x0
    	_SA_SIGINFO  = 0x4
    
    	_SI_KERNEL = 0x80
    	_SI_TIMER  = -0x2
    
    	_SIGHUP    = 0x1
    	_SIGINT    = 0x2
    	_SIGQUIT   = 0x3
    	_SIGILL    = 0x4
    	_SIGTRAP   = 0x5
    	_SIGABRT   = 0x6
    	_SIGBUS    = 0x7
    	_SIGFPE    = 0x8
    	_SIGKILL   = 0x9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-RSA-RSAPSS

    00000230  a8 41 a9 bf df ca 74 ec  e7 af 4b 0d 24 ad e7 e0  |.A....t...K.$...|
    00000240  27 eb 06 26 9e 32 5c 08  3c e4 93 8e d0 50 b5 f9  |'..&.2\.<....P..|
    00000250  33 4d c5 94 f6 f1 de 02  80 9f 1e 5c 09 c2 a1 8a  |3M.........\....|
    00000260  15 89 91 91 41 71 48 2c  03 89 b7 bd e9 bd 7b 0c  |....AqH,......{.|
    00000270  61 74 f5 2a 50 bd 44 da  06 37 77 55 10 6c 5a 75  |at.*P.D..7wU.lZu|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. test/codegen/bits.go

    	// amd64:`ORL\s[$]220,\s4\([A-Z][A-Z0-9]+\)`
    	a[1] |= 220
    	// amd64:`XORL\s[$]240,\s8\([A-Z][A-Z0-9]+\)`
    	a[2] ^= 240
    }
    
    func bitcheckMostNegative(b uint8) bool {
    	// amd64:"TESTB"
    	return b&0x80 == 0x80
    }
    
    // Check AND masking on arm64 (Issue #19857)
    
    func and_mask_1(a uint64) uint64 {
    	// arm64:`AND\t`
    	return a & ((1 << 63) - 1)
    }
    
    func and_mask_2(a uint64) uint64 {
    	// arm64:`AND\t`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top