- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 123 for nerede (0.05 seconds)
-
ADDING_NEW_LANGUAGE.md
├── stemmer_override.txt └── protwords.txt ``` ## Important Notes ### No Database Changes Required - Language configuration is entirely file-based - No database or OpenSearch index updates needed - Settings are loaded at application startup and cached ### Fallback MechanismCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 11:36:30 GMT 2025 - 10.4K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
} } @Test public void test_mimeTypeWithoutPlusCharacterWorksWithoutEscaping() { // Test MIME types without + character (no escaping needed) String[] mimeTypesWithoutPlus = { // "text/html", // "text/plain", // "application/pdf", // "application/xml", //Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
.github/workflows/contributor-pr.yml
unit-test: name: "${{ matrix.bucket.name }} (Unit Test)" permissions: contents: read runs-on: ubuntu-latest needs: build strategy: matrix: bucket: ${{ fromJson(needs.build.outputs.matrix) }} fail-fast: false steps: - name: git clone uses: actions/checkout@v6 - name: setup javaCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 22:06:44 GMT 2026 - 5K bytes - Click Count (0) -
dbflute_fess/dfprop/documentMap.dfprop
# o schemaHtmlFileName: (NotRequired - Default 'schema-[project-name].html') # The file name (not contain path) of SchemaHtml. # Basically you don't need this. # (For example, when you use Application Behavior, you need this) # #; schemaHtmlFileName = xxx.html # - - - - - - - - - -/ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java
*/ package org.codelibs.fess.app.web.admin.wizard; /** * Form class for starting crawling operations in the admin wizard. * * This form is used to collect user input and parameters needed to initiate * crawling operations through the administrative interface wizard workflow. * It serves as a data transfer object between the web layer and the crawling * service components. */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailForm.java
import java.util.Map; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form class for thumbnail request parameters. * Contains the document ID and query parameters needed to retrieve thumbnail images. */ public class ThumbnailForm { /** * The document ID for which to retrieve the thumbnail. */ @Required @Size(max = 100) public String docId;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.9K bytes - Click Count (0) -
.gitignore
/**/docs/src/snippets/**/build /*/internal-android-performance-testing/build-android-libs test-splits/ /gradle/verification-keyring.gpg # Kotlin # ------ .kotlin # IDEA # ---- !/.idea /.idea/* # Needed to track entry points and nullability annotations (see https://youtrack.jetbrains.com/issue/IDEA-354114 and https://youtrack.jetbrains.com/issue/IDEA-354115) !/.idea/misc.xml !/.idea/codeStyles !/.idea/inspectionProfiles
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 16:15:24 GMT 2026 - 1.8K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
## Consequences * We are incurring debt that will need to be paid later via deprecations or breaking changes to existing classes. The implementation for some Gradle types will be more complicated than an equivalent clean-sheet implementation. * During code reviews that introduce new APIs, reviewers need to be mindful that all new properties are implemented with lazy types.
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/entity/ChatSessionTest.java
session.addAssistantMessage("Assistant 2"); session.addUserMessage("User 3"); session.addAssistantMessage("Assistant 3"); // Trimming to 4 starts at index 2 which is user - no skip needed session.trimHistory(4); final List<ChatMessage> messages = session.getMessages(); assertEquals(4, messages.size()); assertEquals(ChatMessage.ROLE_USER, messages.get(0).getRole());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 07 01:53:06 GMT 2026 - 12.6K bytes - Click Count (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
Doing this provides the following specific benefits: - **Reduce the API surface** - We no longer need to maintain two methods. - **Consistency** - All languages have consistent access to the same APIs and ergonomics in the DSL. - **Reduce the size of the Gradle distribution** - We no longer need to carry multiple standard libraries for different languages. ## Decision
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 1.8K bytes - Click Count (0)