- Sort Score
- Num 10 results
- Language All
Results 231 - 240 of 290 for arra (0.01 seconds)
-
src/test/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformerTest.java
responseData.setRuleId("rule-123"); assertEquals("rule-123", responseData.getRuleId()); } @Test public void test_constants_mappingTypes() { assertEquals("array", Constants.MAPPING_TYPE_ARRAY); assertEquals("string", Constants.MAPPING_TYPE_STRING); assertEquals("long", Constants.MAPPING_TYPE_LONG); assertEquals("double", Constants.MAPPING_TYPE_DOUBLE);
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/test/java/org/codelibs/fess/exception/ContentNotFoundExceptionTest.java
// Verify that suppression is disabled try { exception.addSuppressed(new Exception("Test suppressed")); // If suppression is disabled, getSuppressed should return empty array assertEquals(0, exception.getSuppressed().length); } catch (Exception e) { // If an exception is thrown when trying to add suppressed, that's also validCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
} else if (logger.isDebugEnabled()) { logger.debug("Skipping child URL: url={}", u); } } /** * Checks if the byte array contains UTF-8 BOM (Byte Order Mark). * * @param b the byte array to check * @return true if the bytes represent UTF-8 BOM, false otherwise */ private boolean isUtf8BomBytes(final byte[] b) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 55.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
} return null; } /** * Creates a list from an array of configuration ID values. * * @param values array of configuration ID strings * @return list containing all values from the array */ private static List<String> createConfigIdList(final String[] values) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
} /** * Retrieves available artifacts of the specified type from configured repositories. * * @param artifactType the type of artifacts to retrieve * @return an array of available artifacts * @throws PluginException if failed to access the artifact repository */ public Artifact[] getAvailableArtifacts(final ArtifactType artifactType) { try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
* Matcher checking each item is present exactly once in a given iterable, but an any position, * and that there are no unexpected items. */ private fun <T> inAnyOrder(items: Array<out T>): Matcher<Iterable<T>> = Matchers.containsInAnyOrder(*items) fun newApi(thing: String, desc: String): String = "$thing ${describe(thing, desc)}: New public API in 2.0 (@Incubating)"Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
* This method queries the ConfigSync API to get file information and * uses registered DictionaryCreator instances to create appropriate * DictionaryFile objects. * * @return an array of dictionary files available in the system * @throws DictionaryException if there's an error accessing the dictionaries */ public DictionaryFile<? extends DictionaryItem>[] getDictionaryFiles() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/Constants.java
// Mapping Type Constants // ============================================================ /** Mapping type for array fields. */ public static final String MAPPING_TYPE_ARRAY = "array"; /** Mapping type for string fields. */ public static final String MAPPING_TYPE_STRING = "string"; /** Mapping type for long fields. */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:55:54 GMT 2026 - 35.8K bytes - Click Count (0) -
src/main/resources/fess_message_pt_BR.properties
success.crud_delete_crud_table = Dados excluĂdos. errors.front_footer= errors.front_header= errors.front_prefix=<div class="alert alert-warning"> errors.front_suffix=</div>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
assertTrue(extraFieldNames.contains("custom_publish_date"), "Config-defined date field should appear even without doc data"); @SuppressWarnings("unchecked") final Map<String, String> extraFieldTypes = (Map<String, String>) renderData.getDataMap().get("extraFieldTypes"); assertEquals("array", extraFieldTypes.get("custom_tags"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0)