- Sort Score
- Num 10 results
- Language All
Results 351 - 360 of 1,038 for protected (0.05 seconds)
-
guava-testlib/src/com/google/common/collect/testing/google/AbstractListMultimapTester.java
public class AbstractListMultimapTester<K extends @Nullable Object, V extends @Nullable Object> extends AbstractMultimapTester<K, V, ListMultimap<K, V>> { @Override protected void assertGet(K key, V... values) { assertGet(key, asList(values)); } @Override protected void assertGet(K key, Collection<? extends V> values) { assertEqualInOrder(values, multimap().get(key)); if (!values.isEmpty()) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 2.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectRealmCache.java
*/ @Named @Singleton public class DefaultProjectRealmCache implements ProjectRealmCache, Disposable { /** * CacheKey */ protected static class CacheKey implements Key { private final List<? extends ClassRealm> extensionRealms; private final int hashCode; public CacheKey(List<? extends ClassRealm> extensionRealms) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 3.8K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/ReadOnlyPluginParametersValidator.java
super(pluginValidationManager); } @Override protected String getParameterLogReason(Parameter parameter) { return "is read-only, must not be used in configuration"; } @Override protected void doValidate( MavenSession mavenSession, MojoDescriptor mojoDescriptor, Class<?> mojoClass,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.1K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/testing/TestLogHandlerTest.java
* * @author kevinb */ @NullUnmarked public class TestLogHandlerTest extends TestCase { private TestLogHandler handler; private final TearDownStack stack = new TearDownStack(); @Override protected void setUp() throws Exception { super.setUp(); handler = new TestLogHandler(); // You could also apply it higher up the Logger hierarchy than this ExampleClassUnderTest.logger.addHandler(handler);Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sun Aug 10 19:54:19 GMT 2025 - 2.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/MojoException.java
/** * An exception occurring during the execution of a plugin. * * @since 4.0.0 */ @Experimental public class MojoException extends MavenException { protected Object source; protected String longMessage; /** * Constructs a new {@code MojoException} providing the source and a short and long message.Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon May 13 09:53:45 GMT 2024 - 2.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
IteratorTester.KnownOrder.KNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() { return Iterators.cycle(asList(1, 2)); } }.test(); } @GwtIncompatible // slow (~5s) public void testConcatNoIteratorsYieldsEmpty() { new EmptyIteratorTester() { @Override protected Iterator<Integer> newTargetIterator() { return Iterators.concat();Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Oct 28 18:44:53 GMT 2025 - 56.7K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Sources.java
/** * Basic implementation of {@link Source} that uses a {@link Path} as the underlying source. */ static class PathSource implements Source { @Nonnull protected final Path path; @Nonnull protected final String location; /** * Constructs a new PathSource with the specified path. * * @param path the filesystem path to the source contentCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 8.2K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/internal/DeprecatedPluginValidator.java
super(pluginValidationManager); this.messageBuilderFactory = messageBuilderFactory; } @Override protected String getParameterLogReason(Parameter parameter) { return "is deprecated: " + parameter.getDeprecated(); } @Override protected void doValidate( MavenSession mavenSession, MojoDescriptor mojoDescriptor, Class<?> mojoClass,
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.1K bytes - Click Count (0) -
guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java
/** * @since 19.0 (present with return type {@code ListenableFutureTask} since 14.0) */ @CanIgnoreReturnValue // TODO(kak): consider removing this @Override protected final <T extends @Nullable Object> RunnableFuture<T> newTaskFor( Runnable runnable, @ParametricNullness T value) { return TrustedListenableFutureTask.create(runnable, value); } /**Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Feb 12 17:47:46 GMT 2025 - 3K bytes - Click Count (0) -
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
private long h2; private int length; Murmur3_128Hasher(int seed) { super(CHUNK_SIZE); this.h1 = seed; this.h2 = seed; this.length = 0; } @Override protected void process(ByteBuffer bb) { long k1 = bb.getLong(); long k2 = bb.getLong(); bmix64(k1, k2); length += CHUNK_SIZE; } private void bmix64(long k1, long k2) {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:36:11 GMT 2025 - 5.8K bytes - Click Count (0)