- Sort Score
- Result 10 results
- Languages All
Results 1601 - 1610 of 4,195 for nulls (0.02 sec)
-
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java
* @param settings The settings to decrypt, must not be {@code null}. */ public DefaultSettingsDecryptionRequest(Settings settings) { setServers(settings.getServers()); setProxies(settings.getProxies()); } /** * Creates a new request to decrypt the specified server. * * @param server The server to decrypt, must not be {@code null}. */Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EncryptionContextTest.java
void testNullDecryptionKey() { // When/Then assertThrows(NullPointerException.class, () -> { new Smb2EncryptionContext(1, DialectVersion.SMB311, testEncryptionKey, null); }, "Should throw NullPointerException for null decryption key"); } @Test @DisplayName("Should accept null dialect during construction") void testNullDialect() { // When/Then
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 44.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
try { final SuggestItem item = contentsParser.parseSearchWords(words, null, fields, tags, roles, num, readingConverter, normalizer, analyzer, langs); if (item == null) { return new SuggestIndexResponse(0, 1, null, System.currentTimeMillis() - start); } final long parseTime = System.currentTimeMillis();Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 34.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginArtifactsCache.java
if (cacheRecord != null && cacheRecord.getException() != null) { throw cacheRecord.getException(); } return cacheRecord; } @Override public CacheRecord put(Key key, List<Artifact> pluginArtifacts) { Objects.requireNonNull(pluginArtifacts, "pluginArtifacts cannot be null"); assertUniqueKey(key);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2LogoffResponseTest.java
} @Test @DisplayName("Handles null destination without throwing and returns 0") void allowsNullBuffer() { // Arrange Smb2LogoffResponse resp = newResponse(); // Act & Assert assertEquals(0, resp.writeBytesWireFormat(null, 0), "Should return 0 even with null buffer"); } } @NestedRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.7K 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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.9K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K 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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/util/XmlUtilTest.java
/** * Test class for XmlUtil. * * @author shinsuke */ public class XmlUtilTest extends PlainTestCase { public void test_escapeXml_null() { // Test null input assertEquals(StringUtil.EMPTY, XmlUtil.escapeXml(null)); } public void test_escapeXml_empty() { // Test empty string assertEquals("", XmlUtil.escapeXml("")); } public void test_escapeXml_basic() {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 8.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 8K bytes - Viewed (0)