- Sort Score
- Num 10 results
- Language All
Results 521 - 530 of 1,107 for sull (0.01 seconds)
-
src/test/java/org/codelibs/fess/helper/PermissionHelperTest.java
for (String value : testValues) { String encoded = permissionHelper.encode(value); if (encoded != null) { String decoded = permissionHelper.decode(encoded); assertNotNull("Decoded value should not be null for: " + value, decoded); assertEquals("Decoded value should match original: " + value + " -> " + encoded + " -> " + decoded, value, decoded);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/user/exentity/Group.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 1.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/SearchLogEventTest.java
this.eventType = eventType; } } // Test null values implementation private static class NullSearchLogEvent implements SearchLogEvent { @Override public String getId() { return null; } @Override public Long getVersionNo() { return null; } @Override public Map<String, Object> toSource() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/resources/thumbnail/test_generate_thumbnail.sh
echo "" echo "--- get_imagemagick_cmd function tests ---" # Test that ImageMagick is available (either convert or magick) if command -v magick >/dev/null 2>&1 || command -v convert >/dev/null 2>&1; then echo -e "ImageMagick available: ${GREEN}YES${NC}" echo "" echo "--- Image thumbnail tests (requires ImageMagick) ---" # Test: PNG thumbnail generation
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Dec 04 08:02:36 GMT 2025 - 7.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
// Tests will not supply these this.mainApiChangesJsonFile = params.get("mainApiChangesJsonFile") ? new File(params.get("mainApiChangesJsonFile") as String) : null this.projectRootDir = params.get("projectRootDir") ? new File(params.get("projectRootDir") as String) : null } protected BinaryCompatibilityRepository getRepository() {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 22 12:18:18 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} } @Test public void test_process_withNullParameters() throws IOException, ServletException { // Test null parameter handling TestWebApiManager manager = new TestWebApiManager("/api"); try { manager.process(null, null, null); assertTrue(manager.isProcessCalled()); } catch (NullPointerException e) { // Expected for some implementationsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java
assertTrue(item1.equals(item2)); // Item with null output should not equal item with non-null output assertFalse(item3.equals(item1)); assertFalse(item1.equals(item3)); // Item with null output should not equal item with different inputs CharMappingItem item4 = new CharMappingItem(4L, inputs3, null);
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/main/java/org/codelibs/fess/llm/LlmChatRequest.java
* {@code null} means use the model default, {@code 0} disables thinking. * * @return the thinking budget */ public Integer getThinkingBudget() { return thinkingBudget; } /** * Sets the thinking budget for models that support thinking tokens. * {@code null} means use the model default, {@code 0} disables thinking. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 03:38:31 GMT 2026 - 6.4K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ModelBuilderSupport.java
} } return matches; } protected Element getChild(Element element, String childName) { Element child = findChild(element, childName); if (child != null) { return child; } throw new RuntimeException(String.format("No <%s> element found in <%s>", childName, element.getTagName())); }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilder.java
if (overriddenProp != null) { for (ExtraAttributeDoc attributeDoc : overriddenProp.getAdditionalValues()) { additionalValues.put(attributeDoc.getKey(), attributeDoc); } } } for (int i = 1; i < header.size(); i++) { if (cells.get(i).getFirstChild() == null) { continue;
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 6.2K bytes - Click Count (0)