- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 3,753 for private (0.09 sec)
-
src/main/java/jcifs/smb1/ntlmssp/Type1Message.java
/** * Represents an NTLMSSP Type-1 message. */ public class Type1Message extends NtlmMessage { private static final int DEFAULT_FLAGS; private static final String DEFAULT_DOMAIN; private static final String DEFAULT_WORKSTATION; private String suppliedDomain; private String suppliedWorkstation; static { DEFAULT_FLAGS = NTLMSSP_NEGOTIATE_NTLM |
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java
* * @author Kurt Alfred Kluever * @author Martin Buchholz */ public class ThreadFactoryBuilderTest extends TestCase { private final Runnable monitoredRunnable = new Runnable() { @Override public void run() { completed = true; } }; private static final UncaughtExceptionHandler UNCAUGHT_EXCEPTION_HANDLER = new UncaughtExceptionHandler() { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 7.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/UrlComponentEncodingTester.kt
/** * Tests how each code point is encoded and decoded in the context of each URL component. * * This supports [HttpUrlTest]. */ class UrlComponentEncodingTester private constructor() { private val encodings: MutableMap<Int, Encoding> = LinkedHashMap() private fun allAscii(encoding: Encoding) = apply { for (i in 0..127) { encodings[i] = encoding } } fun override( encoding: Encoding,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 12.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/SampleElements.java
@GwtCompatible @ElementTypesAreNonnullByDefault public class SampleElements<E extends @Nullable Object> implements Iterable<E> { // TODO: rename e3, e4 => missing1, missing2 private final E e0; private final E e1; private final E e2; private final E e3; private final E e4; public SampleElements(E e0, E e1, E e2, E e3, E e4) { this.e0 = e0; this.e1 = e1; this.e2 = e2; this.e3 = e3; this.e4 = e4;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 4.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
@GwtIncompatible @ElementTypesAreNonnullByDefault public final class InetAddresses { private static final int IPV4_PART_COUNT = 4; private static final int IPV6_PART_COUNT = 8; private static final char IPV4_DELIMITER = '.'; private static final char IPV6_DELIMITER = ':'; private static final CharMatcher IPV4_DELIMITER_MATCHER = CharMatcher.is(IPV4_DELIMITER); private static final CharMatcher IPV6_DELIMITER_MATCHER = CharMatcher.is(IPV6_DELIMITER);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberRegistry.java
@VisibleForTesting static ImmutableSet<Class<?>> flattenHierarchy(Class<?> concreteClass) { return flattenHierarchyCache.getUnchecked(concreteClass); } private static final class MethodIdentifier { private final String name; private final List<Class<?>> parameterTypes; MethodIdentifier(Method method) { this.name = method.getName();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 15:16:45 UTC 2024 - 10.8K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
return this; } public static class RequestProcessor implements Consumer<HttpURLConnection> { protected CurlResponse response = new CurlResponse(); private final String encoding; private int threshold; public RequestProcessor(final String encoding, final int threshold) { this.encoding = encoding; this.threshold = threshold; }
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Sun Feb 12 12:21:25 UTC 2023 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/SearchListTests.java
@Tag("it") public class SearchListTests extends CrudTestBase { private static final String NAME_PREFIX = "searchListTest_"; private static final String API_PATH = "/api/admin/searchlist"; private static final String LIST_ENDPOINT_SUFFIX = "docs"; private static final String ITEM_ENDPOINT_SUFFIX = "doc"; private static final String KEY_PROPERTY = "title"; @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.5K bytes - Viewed (0) -
android/guava/src/com/google/common/eventbus/SubscriberExceptionContext.java
/** * Context for an exception thrown by a subscriber. * * @since 16.0 */ @ElementTypesAreNonnullByDefault public class SubscriberExceptionContext { private final EventBus eventBus; private final Object event; private final Object subscriber; private final Method subscriberMethod; /** * @param eventBus The {@link EventBus} that handled the event and the subscriber. Useful for
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Apr 22 13:05:46 UTC 2021 - 2.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/TestOutputStream.java
import java.io.IOException; import java.io.OutputStream; import java.util.Arrays; /** @author Colin Decker */ public class TestOutputStream extends FilterOutputStream { private final ImmutableSet<TestOption> options; private boolean closed; public TestOutputStream(OutputStream out, TestOption... options) throws IOException { this(out, Arrays.asList(options)); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.2K bytes - Viewed (0)