Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for 0_80 (0.12 sec)

  1. 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)
  2. src/reflect/type.go

    				prog = append(prog, 0x81)
    				prog = appendVarint(prog, elemWords-elemPtrs-1)
    			}
    		}
    		// Repeat length-1 times.
    		if elemWords < 0x80 {
    			prog = append(prog, byte(elemWords|0x80))
    		} else {
    			prog = append(prog, 0x80)
    			prog = appendVarint(prog, elemWords)
    		}
    		prog = appendVarint(prog, uintptr(length)-1)
    		prog = append(prog, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. docs/en/docs/release-notes.md

    ## 0.107.0
    
    ### Upgrades
    
    * ⬆️ Upgrade Starlette to 0.28.0. PR [#9636](https://github.com/tiangolo/fastapi/pull/9636) by [@adriangb](https://github.com/adriangb).
    
    ### Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="org.jetbrains.kotlinx" name="kotlinx-html-jvm" version="0.8.0">
             <artifact name="kotlinx-html-jvm-0.8.0.jar">
                <pgp value="8E3A02905A1AE67E7B0F9ACD3967D4EDA591B991"/>
             </artifact>
          </component>
          <component group="org.jline" name="jline" version="3.22.0">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  7. src/runtime/asm_amd64.s

    DATA masks<>+0x60(SB)/8, $0x0000ffffffffffff
    DATA masks<>+0x68(SB)/8, $0x0000000000000000
    DATA masks<>+0x70(SB)/8, $0x00ffffffffffffff
    DATA masks<>+0x78(SB)/8, $0x0000000000000000
    DATA masks<>+0x80(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x88(SB)/8, $0x0000000000000000
    DATA masks<>+0x90(SB)/8, $0xffffffffffffffff
    DATA masks<>+0x98(SB)/8, $0x00000000000000ff
    DATA masks<>+0xa0(SB)/8, $0xffffffffffffffff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. internal/grid/connection.go

    	}
    
    	return ww.writeFrame(w, frame)
    }
    
    // writeFrame writes frame binary representation into w.
    func (ww *wsWriter) writeFrame(w io.Writer, f ws.Frame) error {
    	const (
    		bit0  = 0x80
    		len7  = int64(125)
    		len16 = int64(^(uint16(0)))
    		len64 = int64(^(uint64(0)) >> 1)
    	)
    
    	bts := ww.tmp[:]
    	if f.Header.Fin {
    		bts[0] |= bit0
    	}
    	bts[0] |= f.Header.Rsv << 4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	SHF_STRINGS          SectionFlag = 0x20       /* Section contains strings. */
    	SHF_INFO_LINK        SectionFlag = 0x40       /* sh_info holds section index. */
    	SHF_LINK_ORDER       SectionFlag = 0x80       /* Special ordering requirements. */
    	SHF_OS_NONCONFORMING SectionFlag = 0x100      /* OS-specific processing required. */
    	SHF_GROUP            SectionFlag = 0x200      /* Member of section group. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. src/time/format.go

    }
    
    // These are borrowed from unicode/utf8 and strconv and replicate behavior in
    // that package, since we can't take a dependency on either.
    const (
    	lowerhex  = "0123456789abcdef"
    	runeSelf  = 0x80
    	runeError = '\uFFFD'
    )
    
    func quote(s string) string {
    	buf := make([]byte, 1, len(s)+2) // slice will be at least len(s) + quotes
    	buf[0] = '"'
    	for i, c := range s {
    		if c >= runeSelf || c < ' ' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top