Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for deadbeef (0.44 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. src/math/big/natconv_test.go

    	{"XYZ?", 36, false, nat{(33*36+34)*36 + 35}, 36, 3, nil, '?'},
    	{"XYZ?", 62, false, nat{(59*62+60)*62 + 61}, 62, 3, nil, '?'},
    	{"0x", 16, false, nil, 16, 1, nil, 'x'},
    	{"0xdeadbeef", 0, false, nat{0xdeadbeef}, 16, 8, nil, 0},
    	{"0XDEADBEEF", 0, false, nat{0xdeadbeef}, 16, 8, nil, 0},
    
    	// valid, with decimal point
    	{"0.", 0, false, nil, 10, 1, nil, '.'},
    	{"0.", 10, true, nil, 10, 0, nil, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 16.8K bytes
    - Viewed (0)
  4. 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)
  5. 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. 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)
  7. security/tools/jwt/sa-jwt.py

    # limitations under the License.
    
    """Python script generates a JWT signed by a Google service account
    
    Example:
    ./sa-jwt.py  --iss example-issuer --aud foo,bar --claims=email:******@****.***,dead:beef key.json
    """
    from __future__ import print_function
    import argparse
    import time
    
    import google.auth.crypt
    import google.auth.jwt
    
    
    def main(args):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue5515.go

    // license that can be found in the LICENSE file.
    
    // issue 5515: miscompilation doing inlining in generated method wrapper
    
    package main
    
    type T uint32
    
    func main() {
            b := make([]T, 8)
            b[0] = 0xdeadbeef
            rs := Slice(b)
            sort(rs)
    }
    
    type Slice []T
    
    func (s Slice) Swap(i, j int) {
            tmp := s[i]
            s[i] = s[j]
            s[j] = tmp
    }
    
    type Interface interface {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 03:23:21 UTC 2013
    - 597 bytes
    - Viewed (0)
  9. test/loopbce.go

    		a[i] = byte(i)
    	}
    }
    
    func k0(a [100]int) [100]int {
    	for i := 10; i < 90; i++ { // ERROR "Induction variable: limits \[10,90\), increment 1$"
    		if a[0] == 0xdeadbeef {
    			// This is a trick to prohibit sccp to optimize out the following out of bound check
    			continue
    		}
    		a[i-11] = i
    		a[i-10] = i // ERROR "(\([0-9]+\) )?Proved IsInBounds$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. security/tools/jwt/samples/gen-jwt.py

    # limitations under the License.
    
    """Python script generates a JWT signed with custom private key.
    
    Example:
    ./gen-jwt.py  --iss example-issuer --aud foo,bar --claims=email:******@****.***,dead:beef key.pem -listclaim key1 val2 val3 -listclaim key2 val3 val4
    """
    from __future__ import print_function
    import argparse
    import copy
    import time
    
    from jwcrypto import jwt, jwk
    
    
    def main(args):
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top