Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for 0xdeadbeef (0.21 sec)

  1. test/checkbce.go

    	}
    }
    
    func g4(a [100]int) {
    	for i := 10; i < 50; i++ {
    		useInt(a[i-10])
    		useInt(a[i])
    		useInt(a[i+25])
    		useInt(a[i+50])
    
    		// The following are out of bounds.
    		if a[0] == 0xdeadbeef {
    			// This is a trick to prohibit sccp to optimize out the following out of bound check
    			continue
    		}
    		useInt(a[i-11]) // ERROR "Found IsInBounds$"
    		useInt(a[i+51]) // ERROR "Found IsInBounds$"
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/cgo/internal/test/test.go

    int vabs(int x) { return __absvsi2(x); }
    #endif
    
    
    // issue 3729
    // access errno from void C function
    const char _expA = 0x42;
    const float _expB = 3.14159;
    const short _expC = 0x55aa;
    const int _expD = 0xdeadbeef;
    
    #ifdef WIN32
    void g(void) {}
    void g2(int x, char a, float b, short c, int d) {}
    #else
    
    void g(void) {
    	errno = E2BIG;
    }
    
    // try to pass some non-trivial arguments to function g2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top