- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 3,687 for PRIVATE (0.05 sec)
-
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) -
okcurl/src/main/kotlin/okhttp3/curl/Main.kt
internal const val DEFAULT_TIMEOUT = -1 private fun versionString(): String? { val prop = Properties() Main::class.java.getResourceAsStream("/okcurl-version.properties")?.use { prop.load(it) } return prop.getProperty("version", "dev") } @Suppress("TrustAllX509TrustManager", "CustomX509TrustManager") private fun createInsecureTrustManager(): X509TrustManager =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/CollectionRetainAllTester.java
return description; } } private Target empty; private Target disjoint; private Target superset; private Target nonEmptyProperSubset; private Target sameElements; private Target partialOverlap; private Target containsDuplicates; private Target nullSingleton; @Override public void setUp() throws Exception { super.setUp();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 10.7K 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) -
android/guava/src/com/google/common/eventbus/Dispatcher.java
} } finally { dispatching.remove(); queue.remove(); } } } private static final class Event { private final Object event; private final Iterator<Subscriber> subscribers; private Event(Object event, Iterator<Subscriber> subscribers) { this.event = event; this.subscribers = subscribers; } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 7.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
// ========== /** The serial version UID for object serialization. (Default) */ private static final long serialVersionUID = 1L; private final FessUser user; // =================================================================================== // Attribute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeek.java
* @param fid the file identifier */ public SmbComSeek(final Configuration config, final int fid) { super(config, SMB_COM_SEEK); this.fid = fid; } private int fid; private int mode; private long offset; /** * Sets the file identifier. * * @param fid * the fid to set */ public void setFid(final int fid) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/jcifs/audit/SecurityAuditLogger.java
private final Map<EventType, AtomicLong> eventCounters = new ConcurrentHashMap<>(); private final Map<EventType, AtomicLong> eventTimings = new ConcurrentHashMap<>(); // Configuration private volatile boolean enableJsonLogging = true; private volatile boolean maskSensitiveData = true; private volatile boolean includeStackTrace = false; private volatile Severity minLogLevel = Severity.INFO;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/SerializableTesterTest.java
} assertFalse(errorNotThrown); } private static class ClassWhichDoesNotImplementEquals implements Serializable { private static final long serialVersionUID = 1L; } private static class ClassWhichIsAlwaysEqualButHasDifferentHashcodes implements Serializable { private static final long serialVersionUID = 2L; @SuppressWarnings("EqualsHashCode") @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationTest.java
import jcifs.internal.util.SMBUtil; import jcifs.util.Hexdump; class Trans2QueryPathInformationTest { private Trans2QueryPathInformation trans2QueryPathInfo; private Configuration config; @Mock private Configuration mockConfig; private static final String TEST_FILENAME = "test/file.txt"; private static final int TEST_INFO_LEVEL = FileInformation.FILE_BASIC_INFO; @BeforeEach
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.4K bytes - Viewed (0)