- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 61 for padded (0.03 seconds)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
generator.addCondition("field1", "value2"); // Test adding conditions for different fields generator.addCondition("field2", "pattern.*"); // Verify conditions can be added without errors assertNotNull(generator); } @Test public void test_getName() { // Test getName and setName methods generator = new TestThumbnailGenerator();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
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) -
architecture/standards/0010-gradle-properties-naming.md
Practically every Gradle feature is behind a flag, and additional sub-flags or options provide further control. The number of existing Gradle properties is already in the double digits. More properties will be added in the future. Although properties offer the benefit of precise user-side control and support gradual evolution practices, the high number of properties also presents challenges.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 06 09:25:54 GMT 2026 - 8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/EmptyGeneratorTest.java
emptyGenerator.addCondition("field2", "pattern.*"); // We can't test isTarget properly without container, // but we can verify conditions are added assertNotNull(emptyGenerator); // Test that multiple conditions can be added without errors emptyGenerator.addCondition("type", "document"); emptyGenerator.addCondition("mime", "text/.*"); } @Test
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) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
assertEquals("field1:value1", facetQueryView.getQueryMap().get("label1")); assertEquals("field2:value2", facetQueryView.getQueryMap().get("label2")); // Check that queries were added to FacetInfo assertEquals(2, testFacetInfo.getAddedQueries().size()); assertTrue(testFacetInfo.getAddedQueries().contains("field1:value1"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
try { authenticator.getParentGroup(null, "test-id", 4); // If we reach here without NullPointerException, depth check passed } catch (NullPointerException e) { // Expected due to null user - depth check passed, processing attempted assertTrue(true); } catch (Exception e) { // Other exceptions are also acceptable as we're testing depth logicCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
// Execute indexUpdateCallback.store(paramMap, dataMap); // Verify assertEquals(1, indexUpdateCallback.getDocumentSize()); // Check if fields were added (they should be added by the store method) assertNotNull(dataMap.get("id"), "ID should be set"); assertNotNull(dataMap.get("doc_id"), "Doc ID should be set");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java
String escaped; String[] parsed; // Text with comma gets quoted, but parse preserves quotes input = "with,comma"; escaped = KuromojiCSVUtil.quoteEscape(input); // "with,comma" parsed = KuromojiCSVUtil.parse(escaped); assertEquals(1, parsed.length); assertEquals("\"" + input + "\"", parsed[0]); // Quotes are preservedCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 18.9K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/PreparePatchReleaseIntegrationTest.groovy
import spock.lang.Specification import spock.lang.TempDir class PreparePatchReleaseIntegrationTest extends Specification { @TempDir File tmpDir def "version file is bumped and previous version is added to released versions"() { given: def versionFile = new File(tmpDir, "version.txt") versionFile.text = "9.4.0" def releasedVersionsFile = new File(tmpDir, "released-versions.json")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 2.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
assertTrue(result instanceof BoolQueryBuilder); BoolQueryBuilder boolResult = (BoolQueryBuilder) result; assertTrue(boolResult.hasClauses()); } // Test addQuery with no clauses added @Test public void test_addQuery_withNoClauses() { queryContext = new QueryContext("test", false); QueryBuilder initialQuery = QueryBuilders.termQuery("field", "value");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.6K bytes - Click Count (0)