Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 47 for molt (0.02 seconds)

  1. src/main/java/org/codelibs/fess/entity/ChatSession.java

                    messages.clear();
                }
            }
            this.lastAccessedAt = LocalDateTime.now();
        }
    
        /**
         * Trims the message history to keep only the most recent messages.
         *
         * @param maxMessages the maximum number of messages to retain
         */
        public void trimHistory(final int maxMessages) {
            synchronized (messagesLock) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 01:53:06 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/projects/StageProject.kt

                            model,
                            crossVersionTests + previousCrossVersionTests,
                        ),
                    )
                }
    
                // in gradleBuildSmokeTest, most of the tests are for using the configuration cache on gradle/gradle
                val configCacheTests =
                    (functionalTests + specificBuildTypes).filter {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 12.5K bytes
    - Click Count (0)
  3. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    Note that when adding a lazy property to an existing class, you need to check if instances of the class are instantiated via ObjectFactory. Most classes are instantiated this way, but it's possible that a class without any lazy properties was never updated to use it. A tell-tale sign that an object is not instantiated via the ObjectFactory are direct calls to the constructor with new.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
  4. architecture/README.md

    A central part of the Gradle architecture is the "build state model", which holds the state for each piece and coordinates state transitions and other mutations. 
    Most source code in Gradle is arranged by which part(s) of the build state model it acts on.
    This affects the lifecycle of the code and the set of services available for dependency injection.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 3.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java

            // Since it returns a Set, duplicates should be handled by URL comparison
            // The exact behavior depends on RequestData.equals() implementation
            assertTrue("Should have at most 5 items", result.size() <= 5);
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/search/SuggestWordsApiTests.java

            assertTrue(jsonPath.getInt("record_count") >= 0);
            List<Object> data = jsonPath.getList("data");
            if (data != null) {
                assertTrue(data.size() <= 5, "Number of results should be at most 5");
            }
        }
    
        @Test
        public void testSuggestWords_withLabel() {
            Map<String, String> params = new HashMap<>();
            params.put("q", "test");
            params.put("label", "testlabel");
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 03:03:44 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  7. README.md

    - **Code of Conduct**: Gradle enforces a [Code of Conduct](https://gradle.org/conduct/) to ensure a welcoming and supportive community for all contributors.
    
    ---
    
    ### 🔗 **Additional Resources**
    
    To make the most out of Gradle, take advantage of these additional resources:
    
    - **[Gradle Documentation](https://docs.gradle.org/)** - Your go-to guide for all Gradle-related documentation.
    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)
  8. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

                } else {
                    throw GradleException(errorMessage)
                }
            }
        }
    
        /**
         * Returns non-empty directories: the mapping of directory to at most 4 leftover files' relative path in the directory.
         */
        private
        fun TestFilesCleanupProjectState.tmpTestFiles(): LeftoverFiles = projectBuildDir.get().resolve("tmp/teŝt files")
            .listFiles()
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 11:05:07 GMT 2026
    - 14.3K bytes
    - Click Count (1)
  9. docs/fr/README.md

    ### Interface Web
    
    - Interface de recherche : http://localhost:8080/
    
    ![Search UI](https://fess.codelibs.org/_images/fess_search_result1.png)
    
    - Interface d'administration : http://localhost:8080/admin/ (nom d'utilisateur/mot de passe par défaut : admin/admin)
    
    ![Admin UI](https://fess.codelibs.org/_images/fess_admin_dashboard.png)
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            assertEquals("Technical Guy", defaultSettings.get("onelogin.saml2.contacts.technical.given_name"));
            assertEquals("Support Guy", defaultSettings.get("onelogin.saml2.contacts.support.given_name"));
    
            // Most importantly, verify the email typo is fixed
            String techEmail = (String) defaultSettings.get("onelogin.saml2.contacts.technical.email_address");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
Back to Top