- Sort Score
- Result 10 results
- Languages All
Results 161 - 170 of 3,490 for eravate (0.07 sec)
-
guava-testlib/src/com/google/common/testing/ClassSanityTester.java
public final class FactoryMethodReturnValueTester { private final Set<String> packagesToTest = new HashSet<>(); private final Class<?> declaringClass; private final ImmutableList<Invokable<?, ?>> factories; private final String factoryMethodsDescription; private Class<?> returnTypeToTest = Object.class; private FactoryMethodReturnValueTester( Class<?> declaringClass,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java
"oneArgNullableThrowsNpe"); private static final ImmutableSet<String> NONSTATIC_ONE_ARG_METHODS_SHOULD_FAIL = ImmutableSet.of("oneArgThrowsOtherThanNpe", "oneArgShouldThrowNpeButDoesnt"); private static class ThrowsIae { @Keep public static void christenPoodle(String name) { checkArgument(name != null); } } private static class ThrowsNpe { @Keep
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 47.7K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
public final class FactoryMethodReturnValueTester { private final Set<String> packagesToTest = new HashSet<>(); private final Class<?> declaringClass; private final ImmutableList<Invokable<?, ?>> factories; private final String factoryMethodsDescription; private Class<?> returnTypeToTest = Object.class; private FactoryMethodReturnValueTester( Class<?> declaringClass,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 32.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
*/ private static class TestRequest implements Request<TestResponse> { private TestResponse response; private boolean ignoreDisconnect = false; private int tid = 0; private SMBSigningDigest digest; private long mid = 0; private int command = 0; private byte[] rawPayload; private boolean retainPayload = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
// relative to headerStart private static final int PRIMARY_SETUP_OFFSET = 61; private static final int SECONDARY_PARAMETER_OFFSET = 51; static final int DISCONNECT_TID = 0x01; static final int ONE_WAY_TRANSACTION = 0x02; static final int PADDING_SIZE = 4; private final int tflags = 0x00; private int pad1 = 0; private int pad2 = 0; private boolean hasMore = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/LoomTest.kt
@StartStop private val server = MockWebServer() private lateinit var client: OkHttpClient @BeforeEach fun setUp() { platform.assumeLoom() client = clientTestRule .newClientBuilder() .dispatcher(Dispatcher(newVirtualThreadPerTaskExecutor())) .build() } private fun newVirtualThreadPerTaskExecutor(): ExecutorService =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/ParseResponseWithMoshi.java
import java.util.Map; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.Response; public final class ParseResponseWithMoshi { private final OkHttpClient client = new OkHttpClient(); private final Moshi moshi = new Moshi.Builder().build(); private final JsonAdapter<Gist> gistJsonAdapter = moshi.adapter(Gist.class); public void run() throws Exception { Request request = new Request.Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun May 22 01:29:42 UTC 2016 - 1.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/SingletonImmutableBiMap.java
final class SingletonImmutableBiMap<K, V> extends ImmutableBiMap<K, V> { private final K singleKey; private final V singleValue; @Nullable transient SingletonImmutableBiMap<V, K> inverse; SingletonImmutableBiMap(K key, V value) { super(singletonMap(checkNotNull(key), checkNotNull(value))); this.singleKey = key; this.singleValue = value; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 01 22:23:20 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/io/CloseableUtilTest.java
public void testClose_noThrowIOException() throws Exception { final OutputStream out = new IOExceptionOccurOutputStream(); CloseableUtil.close(out); } private static class NotifyOutputStream extends OutputStream { private String notify_; @Override public void write(final int arg0) throws IOException { } @Override public void close() throws IOException {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/UnresolvedArtifacts.java
* the remote repositories where attempts were made to resolve the artifacts. * */ @Deprecated public class UnresolvedArtifacts { private Artifact originatingArtifact; private List<Artifact> artifacts; private List<ArtifactRepository> remoteRepositories; public UnresolvedArtifacts(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0)