- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 413 for original1 (0.04 seconds)
-
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
} @Test public void test_toLineString() { // Test toLineString method StopwordsItem item = new StopwordsItem(1, "original"); assertEquals("original", item.toLineString()); // When updated, should return newInput item.setNewInput("updated"); assertEquals("updated", item.toLineString());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
} // Test getServletPath method with SAStruts.method in query string @Test public void test_getServletPath_withSAStrutsMethodAtBeginning_returnsSuperPath() { final String originalPath = "/original/path"; final String customPath = "/api/v1/search"; mockRequest.setServletPath(originalPath); mockRequest.setQueryString("SAStruts.method=execute&query=test");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/synonym/SynonymItemTest.java
SynonymItem item = new SynonymItem(1, originalInputs, new String[] { "x" }); String[] returnedInputs = item.getInputs(); // Modifying returned array should not affect original returnedInputs[0] = "modified"; // Get again and verify not modified String[] inputs2 = item.getInputs(); assertEquals("a", inputs2[0]); assertEquals("b", inputs2[1]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 8K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
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) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# This is only for the main schema. Additional schemas are unconcerned. # However ReplaceSchema and Sql2Entity task also uses this. # But you can set ReplaceSchema-original setting in its own dfprop. # #; objectTypeTargetList = list:{TABLE ; VIEW} # o tableExceptList: (NotRequired - Default list:{}) # If you want to exclude some tables in generating target,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 7.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/DataStoreParamsTest.java
assertEquals(123, newParams.get("key2")); // Verify that modifications to new instance don't affect original newParams.put("key3", "value3"); assertTrue(newParams.containsKey("key3")); assertFalse(dataStoreParams.containsKey("key3")); // Verify that modifications to original don't affect new instance dataStoreParams.put("key4", "value4");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 10.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/FacetResponseTest.java
// Extract the encoded part String extractedEncoded = fullFieldName.substring(Constants.FACET_FIELD_PREFIX.length()); assertEquals(encodedFieldName, extractedEncoded); // Decode back to original String extractedFieldName = new String(BaseEncoding.base64().decode(extractedEncoded), StandardCharsets.UTF_8); assertEquals(originalFieldName, extractedFieldName); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 6.7K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
/* * Copyright 2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 18:27:10 GMT 2026 - 5.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* character sequence. The mapping supports both original values and new values for update operations.</p> */ public class CharMappingItem extends DictionaryItem { /** * Array of input character sequences that will be mapped to the output sequence. * These represent the original/current input values for this mapping rule. */ private final String[] inputs; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 7.9K bytes - Click Count (0)