- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 199 for blank (0.05 seconds)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
* Removes protocol and path components to return just the hostname. * * @param u the URL string to extract host from * @return the host name, or empty string if URL is blank, or unknown hostname if parsing fails */ default String getHost(final String u) { if (StringUtil.isBlank(u)) { return StringUtil.EMPTY; // empty } String url = u;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 14.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
queryContext = new QueryContext("", false); assertEquals("*", queryContext.getQueryString()); assertNull(queryContext.getDefaultField()); } // Test constructor with blank query string @Test public void test_constructor_blankQueryString() { queryContext = new QueryContext(" ", false); assertEquals("*", queryContext.getQueryString());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.6K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
* blank password initializes signing. */ if (transport.isSignatureSetupRequired(auth)) { if (auth.hashesExternal && NtlmPasswordAuthentication.DEFAULT_PASSWORD != NtlmPasswordAuthentication.BLANK) { /* preauthentication */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 20.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
} final WebAuthenticationConfig config = new WebAuthenticationConfig(); // host/port/realm: only set if not blank (null means "any" - AuthScope.ANY equivalent) final String host = paramMap.get(prefix + "host"); if (StringUtil.isNotBlank(host)) { config.setHost(host); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 17.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
assertTrue(user.getEnvironment().isEmpty()); } @Test public void test_getPermissions_withoutLdapConfig() { // Test when baseDn or accountFilter is blank ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { @Override public String getLdapBaseDn() { return ""; } @Override
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.9K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
private static final long NEXT_MASK = (1L << 32) - 1; /** Bitmask that selects the high 32 bits. */ private static final long HASH_MASK = ~NEXT_MASK; static final int DEFAULT_SIZE = 3; // used to indicate blank table entries static final int UNSET = -1; /* * The array fields below are not initialized directly in the constructor, but they're initialized * by init(), which the constructor calls. */
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 14.5K bytes - Click Count (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/OpenSearchUrlQueueService.java
final String url = urlQueue.getUrl(); if (StringUtil.isBlank(url)) { if (logger.isDebugEnabled()) { logger.debug("URL is a blank: {}", url); } return false; } final String sessionId = urlQueue.getSessionId(); if (super.exists(sessionId, url)) { return true; }
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Thu Nov 20 08:40:57 GMT 2025 - 16.9K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
docMap.put("_id", "nonexistent"); File result = thumbnailManager.getThumbnailFile(docMap); assertNull(result); } // Test getThumbnailFile with blank path @Test public void test_getThumbnailFile_blankPath() { Map<String, Object> docMap = new HashMap<>(); // No _id field, so docid will be null
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
android/guava/src/com/google/common/cache/CacheBuilderSpec.java
for (String keyValuePair : KEYS_SPLITTER.split(cacheBuilderSpecification)) { List<String> keyAndValue = ImmutableList.copyOf(KEY_VALUE_SPLITTER.split(keyValuePair)); checkArgument(!keyAndValue.isEmpty(), "blank key-value pair"); checkArgument( keyAndValue.size() <= 2, "key-value pair %s with more than one equals sign", keyValuePair);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheBuilderSpec.java
for (String keyValuePair : KEYS_SPLITTER.split(cacheBuilderSpecification)) { List<String> keyAndValue = ImmutableList.copyOf(KEY_VALUE_SPLITTER.split(keyValuePair)); checkArgument(!keyAndValue.isEmpty(), "blank key-value pair"); checkArgument( keyAndValue.size() <= 2, "key-value pair %s with more than one equals sign", keyValuePair);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Apr 01 17:27:13 GMT 2026 - 18.2K bytes - Click Count (0)