Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 109 for original1 (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/test/java/org/codelibs/fess/crawler/serializer/DataSerializerTest.java

            assertEquals("Deserialized integer should match original", original, deserialized);
        }
    
        /**
         * Test serialization and deserialization of List
         */
        @Test
        public void test_serializeDeserialize_list() {
            List<String> original = new ArrayList<>();
            original.add("item1");
            original.add("item2");
            original.add("item3");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.6K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            try {
                String result = SystemUtil.getSearchEngineHttpAddress();
                assertNull(result);
            } finally {
                // Restore original value if it existed
                if (originalValue != null) {
                    System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, originalValue);
                }
            }
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainBeforeHookTest.java

            curtainBeforeHook = new FessCurtainBeforeHook();
            // Store original timezone settings
            originalTimeZone = TimeZone.getDefault();
            originalProvider = getDBFluteSystemTimeZoneProvider();
        }
    
        @Override
        protected void tearDown(TestInfo testInfo) throws Exception {
            // Restore original timezone settings
            TimeZone.setDefault(originalTimeZone);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/llm/IntentDetectionResult.java

         *
         * @param originalMessage the original user message
         * @return the fallback search intent result
         */
        public static IntentDetectionResult fallbackSearch(final String originalMessage) {
            return new IntentDetectionResult(ChatIntent.SEARCH, originalMessage, null, "Fallback: using original message as query");
        }
    
        @Override
        public String toString() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 4.1K bytes
    - Click Count (0)
Back to Top