- Sort Score
- Result 10 results
- Languages All
Results 1391 - 1400 of 4,179 for nulls (0.02 sec)
-
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
assertNull(context.getSalt()); assertEquals(6, context.size()); // 4 header + 2 for one hash algo } @Test @DisplayName("Should handle both null parameters") void testBothNullParameters() { context = new PreauthIntegrityNegotiateContext(mockConfig, null, null);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java
assertArrayEquals(ciphers, context.getCiphers()); } @Test @DisplayName("Should create instance with null ciphers") void testConstructorWithNullCiphers() { EncryptionNegotiateContext context = new EncryptionNegotiateContext(mockConfig, null); assertNotNull(context); assertNull(context.getCiphers()); } @Test
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; url = null; threadName = null; errorCount = null; lastAccessTime = null; errorCountMin = null; errorCountMax = null; errorName = null; } /** * Gets the default current page number. *
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosEncDataTest.java
KerberosEncData encData = new KerberosEncData(encoded, Collections.emptyMap()); assertEquals(null, encData.getUserRealm()); assertEquals(null, encData.getUserPrincipalName()); assertEquals(null, encData.getUserAddresses()); assertEquals(null, encData.getUserAuthorizations()); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.7K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Address.kt
/** Returns the SSL socket factory, or null if this is not an HTTPS address. */ @get:JvmName("sslSocketFactory") val sslSocketFactory: SSLSocketFactory?, /** Returns the hostname verifier, or null if this is not an HTTPS address. */ @get:JvmName("hostnameVerifier") val hostnameVerifier: HostnameVerifier?, /** Returns this address's certificate pinner, or null if this is not an HTTPS address. */Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 7.3K bytes - Viewed (0) -
okhttp/src/jvmMain/kotlin/okhttp3/internal/platform/PlatformRegistry.kt
if (conscrypt != null) { return conscrypt } } if (isBouncyCastlePreferred) { val bc = BouncyCastlePlatform.buildIfSupported() if (bc != null) { return bc } } if (isOpenJSSEPreferred) { val openJSSE = OpenJSSEPlatform.buildIfSupported() if (openJSSE != null) { return openJSSE } }Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu May 22 14:39:30 UTC 2025 - 2.1K bytes - Viewed (0) -
compat/maven-repository-metadata/src/main/java/org/apache/maven/artifact/repository/metadata/BaseObject.java
this.delegate = requireNonNull(delegate, "delegate cannot be null"); this.childrenTracking = parent != null ? parent::replace : null; } public BaseObject(Object delegate, ChildrenTracking parent) { this.delegate = requireNonNull(delegate, "delegate cannot be null"); this.childrenTracking = parent; } public Object getDelegate() {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/JoinerTest.java
private static final Iterable<@Nullable Integer> iterableNull = Arrays.asList((Integer) null); private static final Iterable<@Nullable Integer> iterableNullNull = Arrays.asList((Integer) null, null); private static final Iterable<@Nullable Integer> iterableNull1 = Arrays.asList(null, 1); private static final Iterable<@Nullable Integer> iterable1Null = Arrays.asList(1, null);
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 12.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/BuildTimestampValueSource.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
* @return The absolute file path of the resource, or null if not found */ protected String getResourcePath(final String path) { final File file = ResourceUtil.getResourceAsFileNoException(path); if (file != null) { return file.getAbsolutePath(); } return null; } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3)