- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 73 for original1 (0.05 seconds)
-
src/test/java/org/codelibs/fess/entity/RequestParameterTest.java
// Test that modifying the original values array doesn't affect the parameter String name = "immutableParam"; String[] originalValues = { "original1", "original2" }; RequestParameter param = new RequestParameter(name, originalValues); // Get values and verify they match String[] retrievedValues = param.getValues(); assertEquals("original1", retrievedValues[0]);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.9K bytes - Click Count (0) -
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) -
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/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/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/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) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentExtension.kt
/* * Copyright 2024 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: Wed Mar 25 08:51:12 GMT 2026 - 978 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/IntentDetectionResultTest.java
} @Test public void test_fallbackSearch_usesOriginalMessageAsQuery() { final IntentDetectionResult result = IntentDetectionResult.fallbackSearch("original query"); assertEquals(ChatIntent.SEARCH, result.getIntent()); assertEquals("original query", result.getQuery()); } @Test public void test_toString_includesQuery() { final String query = "+Fess +Docker";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 13:27:59 GMT 2026 - 8.2K bytes - Click Count (0)