Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for cafebabe (0.17 sec)

  1. src/math/big/intconv_test.go

    	{"+0x10", "16", 0, 16, true},
    	{"00", "0", 0, 0, true},
    	{"0", "0", 8, 0, true},
    	{"07", "7", 0, 7, true},
    	{"7", "7", 8, 7, true},
    	{"023", "19", 0, 19, true},
    	{"23", "23", 8, 19, true},
    	{"cafebabe", "cafebabe", 16, 0xcafebabe, true},
    	{"0b0", "0", 0, 0, true},
    	{"-111", "-111", 2, -7, true},
    	{"-0b111", "-7", 0, -7, true},
    	{"0b1001010111", "599", 0, 0x257, true},
    	{"1001010111", "1001010111", 2, 0x257, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 22:58:58 UTC 2019
    - 10K bytes
    - Viewed (0)
  2. internal/crypto/metadata_test.go

    }{
    	{KeyID: "", SealedDataKey: nil, SealedKey: SealedKey{Algorithm: SealAlgorithm}},
    	{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}},
    }
    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. guava/src/com/google/common/collect/ImmutableTable.java

      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws InvalidObjectException {
        throw new InvalidObjectException("Use SerializedForm");
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.input

    
    // printing of constant literals
    const (
    	_ = "foobar"
    	_ = "a۰۱۸"
    	_ = "foo६४"
    	_ = "bar9876"
    	_ = 0
    	_ = 1
    	_ = 123456789012345678890
    	_ = 01234567
    	_ = 0xcafebabe
    	_ = 0.
    	_ = .0
    	_ = 3.14159265
    	_ = 1e0
    	_ = 1e+100
    	_ = 1e-100
    	_ = 2.71828e-1000
    	_ = 0i
    	_ = 1i
    	_ = 012345678901234567889i
    	_ = 123456789012345678890i
    	_ = 0.i
    	_ = .0i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableMultiset.java

          }
          return ImmutableMultiset.copyOf(multiset);
        }
    
        private static final long serialVersionUID = 0;
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableCollection.java

         * ImmutableCollection} from this method.
         */
        public abstract ImmutableCollection<E> build();
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.golden

    // printing of constant literals
    const (
    	_	= "foobar"
    	_	= "a۰۱۸"
    	_	= "foo६४"
    	_	= "bar9876"
    	_	= 0
    	_	= 1
    	_	= 123456789012345678890
    	_	= 01234567
    	_	= 0xcafebabe
    	_	= 0.
    	_	= .0
    	_	= 3.14159265
    	_	= 1e0
    	_	= 1e+100
    	_	= 1e-100
    	_	= 2.71828e-1000
    	_	= 0i
    	_	= 1i
    	_	= 012345678901234567889i
    	_	= 123456789012345678890i
    	_	= 0.i
    	_	= .0i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Literal, "12345", 0, 0},
    	{_Literal, "123456789012345678890123456789012345678890", 0, 0},
    	{_Literal, "01234567", 0, 0},
    	{_Literal, "0_1_234_567", 0, 0},
    	{_Literal, "0X0", 0, 0},
    	{_Literal, "0xcafebabe", 0, 0},
    	{_Literal, "0x_cafe_babe", 0, 0},
    	{_Literal, "0O0", 0, 0},
    	{_Literal, "0o000", 0, 0},
    	{_Literal, "0o_000", 0, 0},
    	{_Literal, "0B1", 0, 0},
    	{_Literal, "0b01100110", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/ImmutableBiMap.java

              Function<? super T, ? extends V> valueFunction,
              BinaryOperator<V> mergeFunction) {
        throw new UnsupportedOperationException();
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 16:03:42 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableList.java

         */
        @Override
        public ImmutableList<E> build() {
          forceCopy = true;
          return asImmutableList(contents, size);
        }
      }
    
      private static final long serialVersionUID = 0xcafebabe;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top