Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for cafebabe (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava/src/com/google/common/hash/BloomFilter.java

                  + numHashFunctions
                  + " dataLength: "
                  + dataLength;
          throw new IOException(message, e);
        }
      }
    
      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
    - 26.3K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      public static <Z> ImmutableSortedMultiset<Z> copyOf(Z[] elements) {
        throw new UnsupportedOperationException();
      }
    
      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
    - 29.5K bytes
    - Viewed (0)
  9. 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: Wed May 08 03:01:02 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableSet.java

        return Math.max(
            ImmutableCollection.Builder.DEFAULT_INITIAL_CAPACITY,
            IntMath.sqrt(inputElementsIncludingAnyDuplicates, RoundingMode.CEILING));
      }
    
      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
    - 35.3K bytes
    - Viewed (0)
Back to top