- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 1,507 for Spring (0.07 seconds)
-
README.md
- [Kotlin Libraries](https://docs.gradle.org/current/samples/sample_building_kotlin_libraries.html) - [Scala Applications](https://docs.gradle.org/current/samples/sample_building_scala_applications.html) - [Spring Boot Web Apps](https://docs.gradle.org/current/samples/sample_building_spring_boot_web_applications.html) - [C++ Libraries](https://docs.gradle.org/current/samples/sample_building_cpp_libraries.html)
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Feb 12 18:58:41 GMT 2026 - 7.8K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
```groovy public interface ExistingThing { String getOtherProperty() void setOtherProperty(String s) Property<String> getSomeProperty() } abstract class DefaultExistingThing implements ExistingThing { private String otherProperty public String getOtherProperty() ... public void setOtherProperty(String s) ... // NOTE: No direct implementation of getSomeProperty }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java
String message = ""; ThumbnailGenerationException exception = new ThumbnailGenerationException(message); assertEquals("", exception.getMessage()); assertNull(exception.getCause()); } @Test public void test_constructorWithMessageAndNullCause() { // Test constructor with message and null cause String message = "Thumbnail error";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 10.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatPhaseCallback.java
/** Phase name for intent detection */ String PHASE_INTENT = "intent"; /** Phase name for document search */ String PHASE_SEARCH = "search"; /** Phase name for result evaluation */ String PHASE_EVALUATE = "evaluate"; /** Phase name for content retrieval */ String PHASE_FETCH = "fetch"; /** Phase name for answer generation */ String PHASE_ANSWER = "answer"; /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:32:04 GMT 2026 - 3.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java
} @Test public void test_constructorWithThrowableCause_OutOfMemoryErrorWithAbort() { // Test Error with abort flag String url = "http://example.com/critical-resource"; String message = "Critical memory error during crawling"; OutOfMemoryError error = new OutOfMemoryError("Cannot allocate memory");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 16.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
private SearchEngineClient searchEngineClient; private FessConfig fessConfig; private boolean deleteByQueryCalled; private String deleteIndex; private QueryBuilder deleteQuery; private String expiresFieldName; private String documentUpdateIndex; @Override protected void setUp(TestInfo testInfo) throws Exception { super.setUp(testInfo);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 16.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/llm/LlmClient.java
* @param failureReason the reason for failure ("no_results" or "no_relevant_results") * @param history the conversation history * @return a new query string, or the userMessage if regeneration fails */ String regenerateQuery(String userMessage, String failedQuery, String failureReason, List<LlmMessage> history); /** * Generates an answer using document content (streaming version for enhanced flow). *
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 19 07:04:54 GMT 2026 - 7.3K bytes - Click Count (0) -
utils/utils.go
// NestedRelationName nested relationships like `Manager__Company` func NestedRelationName(prefix, name string) string { return prefix + nestedRelationSplit + name } // SplitNestedRelationName Split nested relationships to `[]string{"Manager","Company"}` func SplitNestedRelationName(name string) []string { return strings.Split(name, nestedRelationSplit) }
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Sat Mar 21 11:35:55 GMT 2026 - 4.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/exec/Crawler.java
*/ protected void sendMail(final Map<String, String> infoMap) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (fessConfig.hasNotification()) { final Map<String, String> dataMap = new HashMap<>(); for (final Map.Entry<String, String> entry : infoMap.entrySet()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 32.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/xml/XmlEscapersTest.java
assertEscaping(xmlEscaper, "'", ch); } else if (shouldEscapeQuotes && ch == '"') { assertEscaping(xmlEscaper, """, ch); } else { String input = String.valueOf(ch); String escaped = xmlEscaper.escape(input); assertWithMessage("char 0x" + Integer.toString(ch, 16) + " should not be escaped") .that(escaped) .isEqualTo(input); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 5K bytes - Click Count (0)