- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 805 for blank (0.02 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java
public static String key(String groupId, String artifactId, String version) { notBlank(groupId, "groupId can neither be null, empty nor blank"); notBlank(artifactId, "artifactId can neither be null, empty nor blank"); notBlank(version, "version can neither be null, empty nor blank"); return groupId + ":" + artifactId + ":" + version; } private static void notBlank(String str, String message) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java
* @param defaultEncoding the default encoding to set * @throws IllegalArgumentException if the default encoding is blank */ public void setDefaultEncoding(final String defaultEncoding) { if (StringUtil.isBlank(defaultEncoding)) { throw new IllegalArgumentException("Default encoding must not be blank."); } this.defaultEncoding = defaultEncoding; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SID.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 16K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/RequestHeader.java
* String name = header.getName(); * String value = header.getValue(); * boolean isValid = header.isValid(); * </pre> * * <p>Note: The name should not be blank and the value should not be null for the header to be considered valid.</p> * * @see java.io.Serializable */ public class RequestHeader implements Serializable { private static final long serialVersionUID = 1L;
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/ContentLengthHelper.java
* @param maxLength The maximum content length in bytes * @throws CrawlerSystemException if the MIME type is blank or maxLength is negative */ public void addMaxLength(final String mimeType, final long maxLength) { if (StringUtil.isBlank(mimeType)) { throw new CrawlerSystemException("MIME type is a blank."); } if (maxLength < 0) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
assertEquals("others", fileTypeHelper.get(" ")); } public void test_get_withBlankFiletype() { fileTypeHelper.add("test/blank", ""); assertEquals("others", fileTypeHelper.get("test/blank")); fileTypeHelper.add("test/null", null); assertEquals("others", fileTypeHelper.get("test/null")); } public void test_getDefaultValue() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * SMB1 blank response message. * * This is a generic response message for SMB commands that don't * return specific data in their response. */ public class SmbComBlankResponse extends ServerMessageBlock { /** * Creates a new blank SMB1 response. * * @param config the CIFS configuration */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
} /** * Extracts the virtual host key from a RelatedQuery entity. * If the virtual host is blank or null, returns an empty string. * * @param entity the RelatedQuery entity to extract the host key from * @return the virtual host key, or empty string if blank or null */ protected String getHostKey(final RelatedQuery entity) { final String key = entity.getVirtualHost();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
</description> <type>boolean</type> <defaultValue>false</defaultValue> </field> <field xdoc.separator="blank"> <name>proxies</name> <version>1.0.0+</version> <description> Configuration for different proxy profiles. Multiple proxy profiles
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun May 18 09:15:56 UTC 2025 - 33.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java
super.setUp(); notificationHelper = new NotificationHelper(); } public void test_sendToSlack_withBlankWebhookUrls() { // Setup mock configuration with blank webhook URLs ComponentUtil.setFessConfig(new MockFessConfig() { @Override public String getSlackWebhookUrls() { return ""; } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 19.6K bytes - Viewed (0)