- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 111 for asDays (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
.github/workflows/contributor-pr.yml
- run: ./gradlew compileAll -DdisableLocalCache=true ${{ steps.determine-sys-prop-args.outputs.sys-prop-args }} - uses: actions/upload-artifact@v7 if: always() with: name: build-receipt.properties path: platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties outputs:Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 22:06:44 GMT 2026 - 5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
assertEquals("5", item.getNewInputs()[1]); assertEquals("9", item.getNewInputs()[2]); } @Test public void test_sort_withNullArrays() { // Test sort with null arrays doesn't throw exception CharMappingItem item = new CharMappingItem(1L, new String[] { "a" }, "output"); item.setNewInputs(null); // Should not throw exception item.sort();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
assertTrue(qrList.contains(doc1)); assertFalse(qrList.contains(doc2)); List<Map<String, Object>> checkList = Arrays.asList(doc1); assertTrue(qrList.containsAll(checkList)); checkList = Arrays.asList(doc1, doc2); assertFalse(qrList.containsAll(checkList)); } @Test public void test_listOperations_indexOperations() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 40.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java
} /** * Test isSortField with empty array - should return false, not throw exception. * This test addresses the Copilot AI concern about empty arrays. */ @Test public void test_isSortField_withEmptyArray_returnsFalse() { String[] emptyFields = {}; queryFieldConfig.setSortFields(emptyFields);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.stats; import java.io.File; import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Locale; import org.codelibs.fess.app.web.api.ApiResult; import org.codelibs.fess.app.web.api.ApiResult.ApiStatsResponse;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
assertNotNull(target, "Target annotation should be present"); final Set<ElementType> expectedTargets = new HashSet<>(Arrays.asList(METHOD, FIELD, ANNOTATION_TYPE, CONSTRUCTOR, PARAMETER)); final Set<ElementType> actualTargets = new HashSet<>(Arrays.asList(target.value())); assertEquals("Target elements should match", expectedTargets, actualTargets); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.4K bytes - Click Count (0) -
.teamcity/scripts/FindCommits.java
* limitations under the License. */ import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; import java.nio.charset.StandardCharsets; import java.util.Arrays; import java.util.List; import java.util.Objects; import java.util.stream.Collectors; /** * TeamCity helper script that prints the list of commits in the current PR (one SHA per line). *
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 20 03:53:25 GMT 2026 - 5.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
private EmptyGenerator emptyGenerator; @Test public void test_generate() { // Initialize without container emptyGenerator = new EmptyGenerator(); // Test that generate always returns false File outputFile = new File("test.jpg"); assertFalse(emptyGenerator.generate("thumbnailId", outputFile)); assertFalse(emptyGenerator.generate(null, outputFile));Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 6.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshot.kt
} } fun ScheduleTrigger.scheduledTrigger( branch: VersionedSettingsBranch, policy: SchedulingPolicy, pendingChangesOnly: Boolean, ) { schedulingPolicy = policy triggerBuild = always() withPendingChangesOnly = pendingChangesOnly enabled = true // https://www.jetbrains.com/help/teamcity/2022.04/configuring-schedule-triggers.html#general-syntax-1
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Dec 29 08:57:18 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java
* This method is not supported in the Fess implementation. * * @param credential the login credential to check * @return true if the user can login, false otherwise * @throws UnsupportedOperationException always thrown as this method is not supported */ @Override public boolean checkUserLoginable(final LoginCredential credential) { throw new UnsupportedOperationException("checkUserLoginable is not supported.");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 12.1K bytes - Click Count (0)