Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for 0_80 (1.3 sec)

  1. src/cmd/internal/notsha256/sha256block_amd64.s

    DATA K256<>+0x6c(SB)/4, $0xc19bf174
    DATA K256<>+0x70(SB)/4, $0x72be5d74
    DATA K256<>+0x74(SB)/4, $0x80deb1fe
    DATA K256<>+0x78(SB)/4, $0x9bdc06a7
    DATA K256<>+0x7c(SB)/4, $0xc19bf174
    
    DATA K256<>+0x80(SB)/4, $0xe49b69c1 // k17 - k20
    DATA K256<>+0x84(SB)/4, $0xefbe4786
    DATA K256<>+0x88(SB)/4, $0x0fc19dc6
    DATA K256<>+0x8c(SB)/4, $0x240ca1cc
    DATA K256<>+0x90(SB)/4, $0xe49b69c1
    DATA K256<>+0x94(SB)/4, $0xefbe4786
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. android/pom.xml

                <checkTestClasses>true</checkTestClasses>
                <signature>
                  <groupId>com.toasttab.android</groupId>
                  <artifactId>gummy-bears-api-21</artifactId>
                  <version>0.8.0</version>
                  <!-- TODO(cpovirk): In principle, it would make sense to *also* test compatibility with JDK 1.8, since guava-android also has JRE users. -->
                </signature>
                <ignores>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_solaris.go

    // Wait status is 7 bits at bottom, either 0 (exited),
    // 0x7F (stopped), or a signal number that caused an exit.
    // The 0x80 bit is whether there was a core dump.
    // An extra number (exit code, signal causing a stop)
    // is in the high bits.
    
    type WaitStatus uint32
    
    const (
    	mask  = 0x7F
    	core  = 0x80
    	shift = 8
    
    	exited  = 0
    	stopped = 0x7F
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 31.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v1_gen.go

    	_ = zb0001Mask
    	if z.Index == nil {
    		zb0001Len--
    		zb0001Mask |= 0x20
    	}
    	if z.Checksums == nil {
    		zb0001Len--
    		zb0001Mask |= 0x40
    	}
    	// variable map header, size zb0001Len
    	err = en.Append(0x80 | uint8(zb0001Len))
    	if err != nil {
    		return
    	}
    	if zb0001Len == 0 {
    		return
    	}
    	// write "ETag"
    	err = en.Append(0xa4, 0x45, 0x54, 0x61, 0x67)
    	if err != nil {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. src/debug/gosym/pclntab.go

    func (t *LineTable) readvarint(pp *[]byte) uint32 {
    	var v, shift uint32
    	p := *pp
    	for shift = 0; ; shift += 7 {
    		b := p[0]
    		p = p[1:]
    		v |= (uint32(b) & 0x7F) << shift
    		if b&0x80 == 0 {
    			break
    		}
    	}
    	*pp = p
    	return v
    }
    
    // funcName returns the name of the function found at off.
    func (t *LineTable) funcName(off uint32) string {
    	if s, ok := t.funcNames[off]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		},
    	})
    
    	group(t, "text string", []test{
    		{
    			name: "reject text string containing invalid utf-8 sequence",
    			in:   hex("6180"), // text string beginning with continuation byte 0x80
    			assertOnError: assertOnConcreteError(func(t *testing.T, e *cbor.SemanticError) {
    				const expected = "cbor: invalid UTF-8 string"
    				if msg := e.Error(); msg != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. src/runtime/asm_386.s

    DATA masks<>+0x6c(SB)/4, $0x00000000
    
    DATA masks<>+0x70(SB)/4, $0xffffffff
    DATA masks<>+0x74(SB)/4, $0x00ffffff
    DATA masks<>+0x78(SB)/4, $0x00000000
    DATA masks<>+0x7c(SB)/4, $0x00000000
    
    DATA masks<>+0x80(SB)/4, $0xffffffff
    DATA masks<>+0x84(SB)/4, $0xffffffff
    DATA masks<>+0x88(SB)/4, $0x00000000
    DATA masks<>+0x8c(SB)/4, $0x00000000
    
    DATA masks<>+0x90(SB)/4, $0xffffffff
    DATA masks<>+0x94(SB)/4, $0xffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 15:45:13 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/link.go

    		case ' ', '\t', '\n':
    			space = true
    			continue
    		default:
    			if space {
    				b.WriteByte(' ')
    				space = false
    			}
    			if 'A' <= c && c <= 'Z' {
    				c += 'a' - 'A'
    			}
    			if c >= 0x80 {
    				hi = true
    			}
    			b.WriteByte(c)
    		}
    	}
    	s = b.String()
    	if hi {
    		s = cases.Fold().String(s)
    	}
    	return s
    }
    
    func parseLinkDest(s string, i int) (string, int, bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    	0x60, 0x61, 0x62, 0x63, 0x64, 0x65, 0x66, 0x67,
    	0x68, 0x69, 0x6a, 0x6b, 0x6c, 0x6d, 0x6e, 0x6f,
    	0x70, 0x71, 0x72, 0x73, 0x74, 0x75, 0x76, 0x77,
    	0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d, 0x7e, 0x7f,
    	0x80, 0x81, 0x82, 0x83, 0x84, 0x85, 0x86, 0x87,
    	0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d, 0x8e, 0x8f,
    	0x90, 0x91, 0x92, 0x93, 0x94, 0x95, 0x96, 0x97,
    	0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

          headerEntries(":method", "GET"),
        )
      }
    
      // Example taken from twitter/hpack DecoderTest.testUnusedIndex
      @Test
      fun readIndexedHeaderFieldIndex0() {
        bytesIn.writeByte(0x80) // == Indexed - Add idx = 0
        assertFailsWith<IOException> {
          hpackReader!!.readHeaders()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("index == 0")
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
Back to top