- Sort Score
- Result 10 results
- Languages All
Results 1481 - 1490 of 3,735 for Null (0.02 sec)
-
src/main/java/jcifs/context/AbstractCIFSContext.java
* * @see jcifs.CIFSContext#withGuestCrendentials() */ @Override public CIFSContext withGuestCrendentials() { return withCredentials(new NtlmPasswordAuthenticator(null, null, (String) null, AuthenticationType.GUEST)); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getCredentials() */ @Override public Credentials getCredentials() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/jcifs/smb/ShareEnumIterator.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 35.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextResponseTest.java
assertArrayEquals(testSalt, Arrays.copyOfRange(buffer, 6, 14)); } @Test @DisplayName("Should encode with null values") void testEncodeWithNullValues() { // Arrange context = new PreauthIntegrityNegotiateContext(mockConfig, null, null); byte[] buffer = new byte[100]; // Act int encodedSize = context.encode(buffer, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
} @Test @DisplayName("Should throw exception when encoding null UUID") void testPolicyHandleEncodeNullUuidThrowsException() { // Given: A policy handle with null UUID rpc.policy_handle policyHandle = new rpc.policy_handle(); policyHandle.type = 123; policyHandle.uuid = null; // When/Then: Should throw NdrException
Registered: Sun Sep 07 00:10:21 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/BoostDocPager.java
pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; urlExpr = null; boostExpr = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; } /** * Gets the total number of records. * @return The total record count. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
pageSize = getDefaultPageSize(); currentPageNumber = getDefaultCurrentPageNumber(); id = null; port = null; username = null; webConfigId = null; createdBy = null; createdTime = null; versionNo = null; } /** * Gets the default current page number. * * @return The default current page number
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/jar/JarFileUtil.java
} } /** * Returns an input stream to read the contents of the specified JAR file entry. * * @param file the JAR file (must not be {@literal null}) * @param entry the JAR file entry (must not be {@literal null}) * @return the input stream to read the entry */ public static InputStream getInputStream(final JarFile file, final ZipEntry entry) { assertArgumentNotNull("file", file);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/MultipartReader.kt
import okio.Options import okio.Source import okio.Timeout import okio.buffer /** * Reads a stream of [RFC 2046][rfc_2046] multipart body parts. Callers read parts one-at-a-time * until [nextPart] returns null. After calling [nextPart] any preceding parts should not be read. * * Typical use loops over the parts in sequence: * * ```kotlin * val response: Response = call.execute()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 02:11:14 UTC 2025 - 7.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/CallHandshakeTest.kt
}.intersect(defaultEnabledCipherSuites.toSet()) private fun makeClient( connectionSpec: ConnectionSpec? = null, tlsVersion: TlsVersion? = null, cipherSuites: List<CipherSuite>? = null, ): OkHttpClient = this.client .newBuilder() .apply { if (connectionSpec != null) { connectionSpecs( listOf( ConnectionSpec
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 11.2K bytes - Viewed (0)