- Sort Score
- Num 10 results
- Language All
Results 191 - 200 of 317 for dfmail (0.04 seconds)
-
src/main/resources/fess_label_pl.properties
labels.user_given_name=Imię (imię własne) labels.givenName=Imię (imię własne) labels.user_surname=Nazwisko labels.surame=Nazwisko labels.user_mail=Adres e-mail labels.mail=Adres e-mail labels.user_employeeNumber=Numer pracownika labels.employeeNumber=Numer pracownika labels.user_telephoneNumber=Numer telefonu labels.telephoneNumber=Numer telefonu labels.user_homePhone=Telefon (domowy)
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 53.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
KuromojiCSVUtil.quoteEscape(null); fail("Should throw NullPointerException for null input"); } catch (NullPointerException e) { // Expected behavior } } @Test public void test_parse_null_input() { // Test null input handling try { KuromojiCSVUtil.parse(null); fail("Should throw NullPointerException for null input");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/mail/EsStatusPostcardTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.mylasta.mail; import org.codelibs.fess.unit.UnitFessTestCase; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.TestInfo; public class EsStatusPostcardTest extends UnitFessTestCase { @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
// The job should handle the exception internally but since QueryBuilders.rangeQuery // throws immediately with empty field name, we need to catch it here fail("Expected an exception for empty field name"); } catch (IllegalArgumentException e) { // Expected exception for empty field name assertTrue(e.getMessage().contains("field name is null or empty"));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java
super.tearDown(testInfo); } @Test public void test_transform_nullResponseData() { try { transformer.transform(null); fail("Should throw CrawlingAccessException for null response"); } catch (final CrawlingAccessException e) { assertTrue(e.getMessage().contains("No response body")); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 8.1K bytes - Click Count (0) -
src/main/webapp/js/admin/plugins/form-validator/lang/de.js
G={errorTitle:"Ihre Anfrage konnte nicht gesendet werden!",requiredField:"Dies ist ein Pflichtfeld",requiredFields:"Sie haben nicht alle Fragen beantwortet",badTime:"Sie haben nicht die korrekte Zeit eingegeben",badEmail:"Sie haben keine gültige E-Mail-Adresse eingegeben",badTelephone:"Sie haben keine richtige Telefonnummer eingetragen",badSecurityAnswer:"Sie haben die falsche Antwort auf die Sicherheitsfrage eingegeben",badDate:"Eingabe eines falschen Datums",lengthBadStart:"Der eingegebene Wert...Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Jan 01 05:12:47 GMT 2018 - 2.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/LanguageHelperTest.java
} @Test public void test_init() { try { languageHelper.init(); // Should not throw exception } catch (Exception e) { fail("init() should not throw an exception: " + e.getMessage()); } } @Test public void test_updateDocument_withExistingLang() { Map<String, Object> doc = new HashMap<>();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 13K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
assertQueryBuilder("{\"timestamp\":{\"order\":\"desc\"}}", "sort:timestamp.desc"); try { assertQueryBuilder("", "sort:xxx"); fail(); } catch (InvalidQueryException e) { // nothing } } @Test public void test_convertTermQuery_dismax() throws Exception { setQueryType("dismax");
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) -
src/test/java/org/codelibs/fess/app/service/CrawlingInfoServiceTest.java
assertNotNull(service); } @Test public void test_setupStoreCondition_nullInput() { try { crawlingInfoService.setupStoreCondition(null); fail("Should throw FessSystemException for null input"); } catch (final FessSystemException e) { assertEquals("Crawling Session is null.", e.getMessage()); } } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 6.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsFileTest.java
throw new IOException("Test exception"); } }; try { stopwordsFile.reload(null, failingStream); fail("Should throw DictionaryException"); } catch (DictionaryException e) { assertTrue(e.getMessage().contains("Failed to parse")); } } // Test update with InputStream @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 18K bytes - Click Count (0)