Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for deadbeef (0.18 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/WebSocketEcho.java

      }
    
      @Override public void onOpen(WebSocket webSocket, Response response) {
        webSocket.send("Hello...");
        webSocket.send("...World!");
        webSocket.send(ByteString.decodeHex("deadbeef"));
        webSocket.close(1000, "Goodbye, World!");
      }
    
      @Override public void onMessage(WebSocket webSocket, String text) {
        System.out.println("MESSAGE: " + text);
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 04 11:40:21 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. internal/crypto/metadata_test.go

    	{KeyID: "my-minio-key", SealedDataKey: make([]byte, 48), SealedKey: SealedKey{Algorithm: SealAlgorithm}},
    	{KeyID: "cafebabe", SealedDataKey: make([]byte, 48), SealedKey: SealedKey{Algorithm: SealAlgorithm}},
    	{KeyID: "deadbeef", SealedDataKey: make([]byte, 32), SealedKey: SealedKey{IV: [32]byte{0xf7}, Key: [64]byte{0xea}, Algorithm: SealAlgorithm}},
    }
    
    func TestS3CreateMetadata(t *testing.T) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 02 00:13:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. pilot/pkg/model/authentication_test.go

    						JwtRules: []*securityBeta.JWTRule{
    							{
    								Issuer:  "issuer-with-jwks-uri",
    								JwksUri: "example.com",
    							},
    							{
    								Issuer: "issuer-with-jwks",
    								Jwks:   "deadbeef",
    							},
    						},
    					},
    				},
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.RequestAuthentication,
    						Name:             "default",
    						Namespace:        rootNamespace,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

     * encoding and decoding behavior, use configuration methods to obtain a new encoding with modified
     * behavior:
     *
     * <pre>{@code
     * BaseEncoding.base16().lowerCase().decode("deadbeef");
     * }</pre>
     *
     * <p>Warning: BaseEncoding instances are immutable. Invoking a configuration method has no effect
     * on the receiving instance; you must store and use the new encoding instance it returns, instead.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/BaseEncoding.java

     * encoding and decoding behavior, use configuration methods to obtain a new encoding with modified
     * behavior:
     *
     * <pre>{@code
     * BaseEncoding.base16().lowerCase().decode("deadbeef");
     * }</pre>
     *
     * <p>Warning: BaseEncoding instances are immutable. Invoking a configuration method has no effect
     * on the receiving instance; you must store and use the new encoding instance it returns, instead.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. src/text/template/parse/parse_test.go

    	{"13+0i", true, true, true, true, 13, 13, 13, 13},
    	// funny bases
    	{"0123", true, true, true, false, 0123, 0123, 0123, 0},
    	{"-0x0", true, true, true, false, 0, 0, 0, 0},
    	{"0xdeadbeef", true, true, true, false, 0xdeadbeef, 0xdeadbeef, 0xdeadbeef, 0},
    	// character constants
    	{`'a'`, true, true, true, false, 'a', 'a', 'a', 0},
    	{`'\n'`, true, true, true, false, '\n', '\n', '\n', 0},
    	{`'\\'`, true, true, true, false, '\\', '\\', '\\', 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/primitives/IntsTest.java

        List<Integer> one = Arrays.asList((int) 1);
        assertThat(Ints.toArray(one)).isEqualTo(ARRAY1);
    
        int[] array = {(int) 0, (int) 1, (int) 0xdeadbeef};
    
        List<Integer> three = Arrays.asList((int) 0, (int) 1, (int) 0xdeadbeef);
        assertThat(Ints.toArray(three)).isEqualTo(array);
    
        assertThat(Ints.toArray(Ints.asList(array))).isEqualTo(array);
      }
    
      public void testToArray_threadSafe() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/IntsTest.java

        List<Integer> one = Arrays.asList((int) 1);
        assertThat(Ints.toArray(one)).isEqualTo(ARRAY1);
    
        int[] array = {(int) 0, (int) 1, (int) 0xdeadbeef};
    
        List<Integer> three = Arrays.asList((int) 0, (int) 1, (int) 0xdeadbeef);
        assertThat(Ints.toArray(three)).isEqualTo(array);
    
        assertThat(Ints.toArray(Ints.asList(array))).isEqualTo(array);
      }
    
      public void testToArray_threadSafe() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  9. src/runtime/mgcsweep.go

    // purposes.
    func clobberfree(x unsafe.Pointer, size uintptr) {
    	// size (span.elemsize) is always a multiple of 4.
    	for i := uintptr(0); i < size; i += 4 {
    		*(*uint32)(add(x, i)) = 0xdeadbeef
    	}
    }
    
    // gcPaceSweeper updates the sweeper's pacing parameters.
    //
    // Must be called whenever the GC's pacing is updated.
    //
    // The world must be stopped, or mheap_.lock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    				bits: 32,
    				p:    mustPrefix("2001:db8::/32"),
    				ok:   true,
    			},
    			{
    				ip:   mustIP(fmt.Sprintf("fe80::dead:beef:dead:beef%s", zone)),
    				bits: 96,
    				p:    mustPrefix("fe80::dead:beef:0:0/96"),
    				ok:   true,
    			},
    			{
    				ip:   mustIP(fmt.Sprintf("aaaa::%s", zone)),
    				bits: 4,
    				p:    mustPrefix("a000::/4"),
    				ok:   true,
    			},
    			{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top