Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 9 of 9 for b0 (0.06 seconds)

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/WebSocketReader.kt

        val b0: Int
        val timeoutBefore = source.timeout().timeoutNanos()
        source.timeout().clearTimeout()
        try {
          b0 = source.readByte() and 0xff
        } finally {
          source.timeout().timeout(timeoutBefore, TimeUnit.NANOSECONDS)
        }
    
        opcode = b0 and B0_MASK_OPCODE
        isFinalFrame = b0 and B0_FLAG_FIN != 0
        isControlFrame = b0 and OPCODE_FLAG_CONTROL != 0
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue Nov 04 16:11:23 GMT 2025
    - 10K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java

         * the next.
         */
        byte[] a0 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 99, 15, 16, 17};
        byte[] b0 = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 99, 14, 15, 16, 17};
    
        assertThat(comparator1.compare(a0, b0)).isLessThan(0);
        assertThat(comparator2.compare(a0, b0)).isLessThan(0);
      }
    
      public void testSort() {
        testSort(new byte[] {}, new byte[] {});
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 11 20:45:32 GMT 2025
    - 13.5K bytes
    - Click Count (0)
  3. lib/fips140/v1.1.0-rc1.zip

    srcPtrLen VEOR KLAST.B16, T0.B16, T0.B16 VREV32 CTR.B16, B0.B16 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, tailLast AESMC B0.B16, B0.B16 AESE K10.B16,...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Dec 11 16:27:41 GMT 2025
    - 663K bytes
    - Click Count (0)
  4. lib/fips140/v1.0.0-c2097c7c.zip

    srcPtrLen VEOR KLAST.B16, T0.B16, T0.B16 VREV32 CTR.B16, B0.B16 AESE K0.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K1.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K2.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K3.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K4.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K5.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K6.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K7.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K8.B16, B0.B16 AESMC B0.B16, B0.B16 AESE K9.B16, B0.B16 TBZ $4, NR, tailLast AESMC B0.B16, B0.B16 AESE K10.B16,...
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 25 19:53:19 GMT 2025
    - 642.7K bytes
    - Click Count (0)
  5. docs/debugging/xl-meta/main.go

    						}
    						all, err := io.ReadAll(r)
    						if err != nil {
    							return err
    						}
    						foundData[name] = all
    					}
    				}
    			} else {
    				b0 := ""
    				if ndjson {
    					b, _ := json.Marshal(file)
    					b0 = fmt.Sprintf("%s: ", string(b))
    				}
    				b, err := decode(r, file)
    				if err != nil {
    					return err
    				}
    				b = bytes.TrimSpace(b)
    				if !ndjson {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 40.4K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/collect/Sets.java

       * products that you would get from nesting for loops:
       *
       * {@snippet :
       * for (B b0 : sets.get(0)) {
       *   for (B b1 : sets.get(1)) {
       *     ...
       *     ImmutableList<B> tuple = ImmutableList.of(b0, b1, ...);
       *     // operate on tuple
       *   }
       * }
       * }
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 18:35:44 GMT 2025
    - 81.6K bytes
    - Click Count (0)
  7. src/archive/tar/reader.go

    }
    
    func (sr *sparseFileReader) Read(b []byte) (n int, err error) {
    	finished := int64(len(b)) >= sr.logicalRemaining()
    	if finished {
    		b = b[:sr.logicalRemaining()]
    	}
    
    	b0 := b
    	endPos := sr.pos + int64(len(b))
    	for endPos > sr.pos && err == nil {
    		var nf int // Bytes read in fragment
    		holeStart, holeEnd := sr.sp[0].Offset, sr.sp[0].endOffset()
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Oct 07 19:46:36 GMT 2025
    - 26.9K bytes
    - Click Count (0)
  8. src/archive/zip/reader_test.go

    00000a0 8b fc 9c ca cc 08 cc cb cc 5e d2 1c 88 d9 7e bb
    00000b0 4f bb 3a 3f 75 f1 5d 7f 8f c2 68 67 77 8f 25 ff
    00000c0 84 e2 93 2d ef a4 95 3d 71 4e 2c b9 b0 87 c3 be
    00000d0 3d f8 a7 60 24 61 c5 ef ae 9e c8 6c 6d 4e 69 c8
    00000e0 67 65 34 f8 37 76 2d 76 5c 54 f3 95 65 49 c7 0f
    00000f0 18 71 4b 7e 5b 6a d1 79 47 61 41 b0 4e 2a 74 45
    0000100 43 58 12 b2 5a a5 c6 7d 68 55 88 d4 98 75 18 6d
    0000110 08 d1 1f 8f 5a 9e 96 ee 45 cf a4 84 4e 4b e8 50
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Fri Oct 17 20:10:27 GMT 2025
    - 56.5K bytes
    - Click Count (0)
  9. doc/go_spec.html

    	A1 = A0
    	A2 = struct{ a, b int }
    	A3 = int
    	A4 = func(A3, float64) *A0
    	A5 = func(x int, _ float64) *[]string
    
    	B0 A0
    	B1 []string
    	B2 struct{ a, b int }
    	B3 struct{ a, c int }
    	B4 func(int, float64) *B0
    	B5 func(x int, y float64) *A1
    
    	C0 = B0
    	D0[P1, P2 any] struct{ x P1; y P2 }
    	E0 = D0[int, string]
    )
    </pre>
    
    <p>
    these types are identical:
    </p>
    
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 02 23:07:19 GMT 2025
    - 286.5K bytes
    - Click Count (1)
Back to Top