Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 126 for oere (0.02 seconds)

  1. dbflute_fess/dfprop/additionalForeignKeyMap.dfprop

    # /---------------------------------------------------------------------------
    # additionalForeignKeyMap: (NotRequired - Default map:{})
    #
    # If foreign key does not exist in your database,
    # you can set up here as virtual foreign key for DBFlute.
    #
    # And it's one-to-one relation if you add one fixed condition to referrer table, 
    # you can set virtual foreign key with fixedCondition and fixedSuffix.
    # And you can use it to view objects too.
    #
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 1.7K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/chat/ChatClientTest.java

        @Test
        public void test_buildAssistantHistoryContent_full() {
            final ChatMessage msg = ChatMessage.assistantMessage("Full response text here.");
            final String result = chatClient.testBuildAssistantHistoryContent(msg, "full", 500, 500);
            assertEquals("Full response text here.", result);
        }
    
        @Test
        public void test_buildAssistantHistoryContent_none() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 40.6K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java

        public String virtualHost;
    
        /**
         * The username who created these related queries.
         */
        @Size(max = 1000)
        public String createdBy;
    
        /**
         * The timestamp when these related queries were created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values for creating new related queries.
         */
        public void initialize() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfigImpl.java

                    verifyPropertyValue(propertyKey, filteredValue); // null checked
                    return filterPropertyAsDefault(filteredValue); // not null here
                }
    
                private String getFromCache(final String propertyKey) {
                    try {
                        return cache.get(propertyKey, () -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 09:31:58 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImplTest.java

                    try {
                        for (int j = 0; j < urlsPerThread; j++) {
                            // Access is synchronized internally in the actual implementation
                            // Here we just verify no concurrent modification exceptions occur
                            String url = "http://example.com/thread" + threadIndex + "/doc" + j;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  6. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

            with(standardError) {
                files.forEach {
                    assertContains("API changes in file '${it.name}' should be in alphabetical order (by type and member), yet these changes were not:\n")
                }
                changes?.forEach { assertContains(it.toString()) }
                assertContains(cleanupHint)
            }
        }
    
        private
        fun StringWriter.assertContains(text: String) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Nov 29 14:03:44 GMT 2024
    - 6K bytes
    - Click Count (0)
  7. src/main/resources/fess_indices/fess/es/stopwords.txt

    hubiese
    hubieses
    hubiésemos
    hubieseis
    hubiesen
    habiendo
    habido
    habida
    habidos
    habidas
    soy
    eres
    es
    somos
    sois
    son
    sea
    seas
    seamos
    seáis
    sean
    seré
    serás
    será
    seremos
    seréis
    serán
    sería
    serías
    seríamos
    seríais
    serían
    era
    eras
    éramos
    erais
    eran
    fui
    fuiste
    fue
    fuimos
    fuisteis
    fueron
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 2.2K bytes
    - Click Count (0)
  8. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AlphabeticalAcceptedApiChangesTask.kt

            val messages = formattedMismatches.map {
                "API changes in file '${it.key.name}' should be in alphabetical order (by type and member), yet these changes were not:\n" +
                    "$formattedMismatches\n"
            }.joinToString(separator = "\n")
    
            return "$messages\nTo automatically alphabetize these changes run: './gradlew :architecture-test:sortAcceptedApiChanges'"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Nov 29 14:03:44 GMT 2024
    - 2.5K bytes
    - Click Count (0)
  9. CLAUDE.md

    - Named with "Helper" suffix
    
    ### DBFlute Generated Code
    ```
    opensearch/{index}/
    ├── bsentity/, bsbhv/    # Base classes (DO NOT EDIT)
    ├── exentity/, exbhv/    # Extended classes (customize here)
    └── cbean/               # Condition beans (query builders)
    ```
    
    ### Form Classes
    - POJOs with public fields (no getters/setters)
    - Validation: `@Required`, `@Size`, `@ValidateTypeFailure`, `@Pattern`
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 09:48:10 GMT 2026
    - 7.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

                // Note: This method may fail in test environments due to system dependencies
                // but we mainly want to ensure the method signature is correct
                testTarget.expired();
    
                // If we get here, the method executed successfully
                assertTrue("expired method executed successfully", true);
            } catch (Throwable t) {
                // In test environments, system monitoring may fail due to missing dependencies
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
Back to Top