- Sort Score
- Num 10 results
- Language All
Results 1961 - 1970 of 5,027 for eravate (0.12 seconds)
-
src/main/java/org/codelibs/fess/util/WebApiUtil.java
*/ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */ private static final String WEB_API_EXCEPTION = "webApiException"; /** * Private constructor to prevent instantiation. */ private WebApiUtil() { } /** * Sets an object in the current request attributes. * * @param name The attribute nameCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.2K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapInverseTester.java
assertSame(copy.forward, copy.backward.inverse()); } private static final class BiMapPair<K, V> implements Serializable { final BiMap<K, V> forward; final BiMap<V, K> backward; BiMapPair(BiMap<K, V> original) { this.forward = original; this.backward = original.inverse(); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /**
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3.1K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/AbstractSequentialIteratorTest.java
} private static Iterator<Integer> newDoubler(int first, int last) { return new AbstractSequentialIterator<Integer>(first) { @Override protected @Nullable Integer computeNext(Integer previous) { return (previous == last) ? null : previous * 2; } }; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 4.7K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 3.4K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4Authentication.java
* Hc4Authentication auth = new Hc4Authentication(authScope, credentials); * } * </pre> */ public class Hc4Authentication { private AuthScope authScope; private Credentials credentials; private AuthScheme authScheme; /** * Initializes the Hc4Authentication with the provided AuthScope and Credentials, * and sets the AuthScheme to null.
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.7K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5Authentication.java
* Hc5Authentication auth = new Hc5Authentication(authScope, credentials); * } * </pre> */ public class Hc5Authentication { private AuthScope authScope; private Credentials credentials; private AuthScheme authScheme; /** * Initializes the Hc5Authentication with the provided AuthScope and Credentials, * and sets the AuthScheme to null.
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Jan 08 14:22:26 GMT 2026 - 3.8K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
* from cached headers. */ private fun isContentSpecificHeader(fieldName: String): Boolean = "Content-Length".equals(fieldName, ignoreCase = true) || "Content-Encoding".equals(fieldName, ignoreCase = true) || "Content-Type".equals(fieldName, ignoreCase = true) } } private fun Request.requestForCache(): Request { val cacheUrlOverride = cacheUrlOverrideCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Jan 11 12:06:21 GMT 2026 - 10.3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetTestSuiteBuilder.java
return gen.order(new ArrayList<E>(new LinkedHashSet<E>(insertionOrder))); } } private static final class EntrySetGenerator<E> implements TestSetGenerator<Multiset.Entry<E>> { final OneSizeTestContainerGenerator<Collection<E>, E> gen; private EntrySetGenerator(OneSizeTestContainerGenerator<Collection<E>, E> gen) { this.gen = gen; } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 10.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.java
import jcifs.internal.smb1.trans.SmbComTransaction; /** * Unit tests for Trans2QueryPathInformationResponse class */ class Trans2QueryPathInformationResponseTest { @Mock private Configuration mockConfig; private Trans2QueryPathInformationResponse response; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.9K bytes - Click Count (0) -
compat/maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java
import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertions.assertTrue; @PlexusTest @Deprecated class MirrorProcessorTest { @Inject private DefaultMirrorSelector mirrorSelector; @Inject private ArtifactRepositoryFactory repositorySystem; @Test void testExternalURL() { assertTrue(DefaultMirrorSelector.isExternalRepo(getRepo("foo", "http://somehost")));Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 10.7K bytes - Click Count (0)