- Sort Score
- Num 10 results
- Language All
Results 2171 - 2180 of 7,812 for republic (0.06 seconds)
-
android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java
} @CollectionFeature.Require(SUPPORTS_ADD) public void testSetCount_zeroToZero_addSupported() { assertZeroToZero(); } @CollectionFeature.Require(SUPPORTS_REMOVE) public void testSetCount_zeroToZero_removeSupported() { assertZeroToZero(); } @CollectionFeature.Require(absent = {SUPPORTS_ADD, SUPPORTS_REMOVE}) public void testSetCount_zeroToZero_unsupported() { try {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 13K bytes - Click Count (0) -
samples/guide/src/main/java/okhttp3/recipes/PreemptiveAuth.java
import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; public final class PreemptiveAuth { private final OkHttpClient client; public PreemptiveAuth() { client = new OkHttpClient.Builder() .addInterceptor( new BasicAuthInterceptor("publicobject.com", "jesse", "password1")) .build(); } public void run() throws Exception { Request request = new Request.Builder()Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Nov 05 07:46:46 GMT 2018 - 2.1K bytes - Click Count (0) -
android/guava/src/com/google/common/base/VerifyException.java
* * @since 17.0 */ @GwtCompatible public class VerifyException extends RuntimeException { /** Constructs a {@code VerifyException} with no message. */ public VerifyException() {} /** Constructs a {@code VerifyException} with the message {@code message}. */ public VerifyException(@Nullable String message) { super(message); } /**Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.8K bytes - Click Count (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
* License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. *
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.7K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/cisupport/GenericCIDetector.java
* detector result IF there are also any other returned via discovered services. */ public class GenericCIDetector implements CIDetector { public static final String NAME = "Generic"; private static final String CI = "CI"; @Override public Optional<CIInfo> detectCI() { String ciEnv = System.getenv(CI); if (ciEnv != null && !"false".equals(ciEnv)) {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Sun Apr 13 18:50:07 GMT 2025 - 1.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ComponentUtilTest.java
} @Test public void test_available_withSystemHelper() { ComponentUtil.register(new Object(), "systemHelper"); assertFalse(ComponentUtil.available()); } @Test public void test_available_withoutSystemHelper() { assertFalse(ComponentUtil.available()); } @Test public void test_hasComponent_existsInMap() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
private int currentPageNumber; /** ID of the failure URL record. */ public String id; /** Name of the thread that encountered the failure. */ public String threadName; /** Number of errors encountered for this URL. */ public String errorCount; /** Last time this URL was accessed. */ public String lastAccessTime; /** * Clears all pager data and resets to default values.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/MultimapBuilder.java
* * @since 16.0 */ public abstract static class ListMultimapBuilder< K0 extends @Nullable Object, V0 extends @Nullable Object> extends MultimapBuilder<K0, V0> { ListMultimapBuilder() {} @Override public abstract <K extends K0, V extends V0> ListMultimap<K, V> build(); @Override public <K extends K0, V extends V0> ListMultimap<K, V> build(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 18K bytes - Click Count (0) -
guava/src/com/google/common/collect/MultimapBuilder.java
* * @since 16.0 */ public abstract static class ListMultimapBuilder< K0 extends @Nullable Object, V0 extends @Nullable Object> extends MultimapBuilder<K0, V0> { ListMultimapBuilder() {} @Override public abstract <K extends K0, V extends V0> ListMultimap<K, V> build(); @Override public <K extends K0, V extends V0> ListMultimap<K, V> build(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 22 18:35:44 GMT 2025 - 18K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
/** * Utility class for web API operations. * Provides functionality for setting and retrieving objects from request attributes, * error handling, and validation in web API context. */ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */ private static final String WEB_API_EXCEPTION = "webApiException"; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.2K bytes - Click Count (0)