- Sort Score
- Result 10 results
- Languages All
Results 901 - 910 of 1,414 for empty (0.01 sec)
-
src/test/java/org/codelibs/fess/script/AbstractScriptEngineTest.java
public void test_evaluate_nullParams() { Object result = testScriptEngine.evaluate("template", null); assertEquals("processed: template with params", result); } // Test evaluate with empty parameters public void test_evaluate_emptyParams() { Map<String, Object> emptyParams = new HashMap<>(); Object result = testScriptEngine.evaluate("template", emptyParams);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/PingResponse.java
private final int status; private final String clusterName; private final String clusterStatus; private String message = StringUtil.EMPTY; /** * Creates a ping response from cluster health response. * * @param response the cluster health response */ public PingResponse(final ClusterHealthResponse response) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (2) -
src/main/java/org/codelibs/core/zip/ZipFileUtil.java
} /** * Creates and returns a <code>ZipFile</code> for reading the specified Zip file. * * @param file * File path. Must not be {@literal null} or an empty string. * @return A <code>ZipFile</code> for reading the specified Zip file. */ public static ZipFile create(final String file) { assertArgumentNotEmpty("file", file); try {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosPacAuthDataTest.java
assertNotNull(authData.getPac().getServerSignature()); assertNotNull(authData.getPac().getKdcSignature()); } } // Test exception for empty PAC @Test void testConstructorEmptyPac() { byte[] emptyToken = new byte[0]; PACDecodingException e = assertThrows(PACDecodingException.class, () -> {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.3K bytes - Viewed (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java
*/ String type() default "java.lang.String"; /** * Specifies the default value of the configuration property. * * @return the default value as a string, defaults to empty string */ String defaultValue() default ""; /** * Specifies whether the configuration property is read-only. * * @return true if the property is read-only, false otherwise */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jul 03 14:18:26 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Map<String, String> infoMap = new HashMap<>(); try { crawler.sendMail(infoMap); } catch (Exception e) { fail("Should not throw exception with empty map: " + e.getMessage()); } } // Test getValueFromMap private method via reflection public void test_getValueFromMap() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 30.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java
* Attempts to {@code put} an element into a full queue will result in the operation blocking; * attempts to {@code take} an element from an empty queue will similarly block. * * <p>This class supports an optional fairness policy for ordering waiting producer and consumer * threads. By default, this ordering is not guaranteed. However, a queue constructed with fairness
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ThemeHelper.java
final String themeName = artifact.getName().substring(ArtifactType.THEME.getId().length() + 1); if (StringUtil.isBlank(themeName)) { throw new ThemeException("Theme name is empty: " + artifact); } return themeName; } /** * Recursively deletes a directory and all its contents. * Does not throw exceptions, only logs warnings if deletion fails. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
assertEquals(cause, exception.getCause()); assertEquals("Invalid argument", exception.getCause().getMessage()); } public void test_constructorWithEmptyMessage() { // Test constructor with empty message String message = ""; GsaConfigException exception = new GsaConfigException(message); assertNotNull(exception); assertEquals("", exception.getMessage());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/documents/ApiAdminDocumentsAction.java
} if (body.documents.isEmpty()) { throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateCrudTable(GLOBAL, "documents is empty.")); } final String indexFieldId = fessConfig.getIndexFieldId(); final String indexFieldDocId = fessConfig.getIndexFieldDocId();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.3K bytes - Viewed (0)