- Sort Score
- Result 10 results
- Languages All
Results 1841 - 1850 of 3,496 for 1Final (0.08 sec)
-
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
} private static final int MAXIMUM_CAPACITY = 1 << 30; static final float DEFAULT_LOAD_FACTOR = 1.0f; /** Bitmask that selects the low 32 bits. */ private static final long NEXT_MASK = (1L << 32) - 1; /** Bitmask that selects the high 32 bits. */ private static final long HASH_MASK = ~NEXT_MASK; static final int DEFAULT_SIZE = 3; // used to indicate blank table entries
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 15K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/FeatureUtil.java
*/ @GwtIncompatible public final class FeatureUtil { /** A cache of annotated objects (typically a Class or Method) to its set of annotations. */ private static final Map<AnnotatedElement, List<Annotation>> annotationCache = new HashMap<>(); private static final Map<Class<?>, TesterRequirements> classTesterRequirementsCache = new HashMap<>();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 05 22:05:05 UTC 2024 - 12.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AllEqualOrdering.java
/** * An ordering that treats all references as equals, even nulls. * * @author Emily Soldal */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class AllEqualOrdering extends Ordering<@Nullable Object> implements Serializable { static final AllEqualOrdering INSTANCE = new AllEqualOrdering(); @Override @SuppressWarnings("UnusedVariable") // intentionally weird Comparator
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:24:26 UTC 2024 - 1.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ComparatorOrdering.java
/** An ordering for a pre-existing comparator. */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class ComparatorOrdering<T extends @Nullable Object> extends Ordering<T> implements Serializable { final Comparator<T> comparator; ComparatorOrdering(Comparator<T> comparator) { this.comparator = checkNotNull(comparator); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sun Jun 20 14:22:42 UTC 2021 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/AllEqualOrdering.java
/** * An ordering that treats all references as equals, even nulls. * * @author Emily Soldal */ @GwtCompatible(serializable = true) @ElementTypesAreNonnullByDefault final class AllEqualOrdering extends Ordering<@Nullable Object> implements Serializable { static final AllEqualOrdering INSTANCE = new AllEqualOrdering(); @Override @SuppressWarnings("UnusedVariable") // intentionally weird Comparator
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:24:26 UTC 2024 - 1.9K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocRenderer.java
import org.w3c.dom.Element; import java.util.ArrayList; import java.util.List; public class ClassDocRenderer { private final GenerationListener listener = new DefaultGenerationListener(); private final ClassDescriptionRenderer descriptionRenderer = new ClassDescriptionRenderer(); private final List<ClassDocMemberRenderer> memberRenderers = new ArrayList<ClassDocMemberRenderer>(); public ClassDocRenderer(LinkRenderer linkRenderer) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
private static final Logger log = LoggerFactory.getLogger(SmbTransportPoolImpl.class); private final List<SmbTransportImpl> connections = new LinkedList<>(); private final List<SmbTransportImpl> nonPooledConnections = new LinkedList<>(); private final ConcurrentLinkedQueue<SmbTransportImpl> toRemove = new ConcurrentLinkedQueue<>(); final Map<String, Integer> failCounts = new ConcurrentHashMap<>();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 12.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/Serialization.java
throw new AssertionError(e); // programmer error } } // Secret sauce for setting final fields; don't make it public. static final class FieldSetter<T> { private final Field field; private FieldSetter(Field field) { this.field = field; field.setAccessible(true); } void set(T instance, Object value) { try {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Mar 06 16:06:58 UTC 2023 - 8.5K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java
public static final WithPublicConstructorAndConstant INSTANCE = new WithPublicConstructorAndConstant(); public WithPublicConstructorAndConstant() {} } private static class WithPublicConstants { public static final WithPublicConstants FIRST = new WithPublicConstants(); // To test that we pick the first constant alphabetically @SuppressWarnings("unused")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 21.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/ReactorReader.java
class ReactorReader implements MavenWorkspaceReader { public static final String HINT = "reactor"; public static final String PROJECT_LOCAL_REPO = "project-local-repo"; private static final Collection<String> COMPILE_PHASE_TYPES = new HashSet<>( Arrays.asList("jar", "ejb-client", "war", "rar", "ejb3", "par", "sar", "wsr", "har", "app-client")); private static final Logger LOGGER = LoggerFactory.getLogger(ReactorReader.class);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 22.3K bytes - Viewed (0)