Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for cafebabe (0.29 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/JavaClassUtil.java

    import java.io.IOException;
    import java.io.InputStream;
    
    /**
     * Utility class which operates directly on Java class files.
     */
    public class JavaClassUtil {
    
        private static final int MAGIC_BYTES = 0xCAFEBABE;
    
        private JavaClassUtil() {
            // Private to prevent instantiation.
        }
    
        /**
         * Get the class file major version from the provided {@code file}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. guava/src/com/google/common/collect/ImmutableSortedSet.java

      public static <Z> ImmutableSortedSet<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
    - 38.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/ImmutableMap.java

      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: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top