Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 181 - 190 of 337 for alla (0.02 seconds)

  1. src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java

        }
    
        /**
         * Test that init() creates Sets when arrays are initialized.
         */
        @Test
        public void test_init_createsSets() {
            queryFieldConfig.init();
    
            // All Sets should be created during init
            assertNotNull(queryFieldConfig.searchFieldSet);
            assertNotNull(queryFieldConfig.facetFieldSet);
            assertNotNull(queryFieldConfig.sortFieldSet);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

        const val GRADLE_INSTALL_PATH = "gradle_installPath"
    
    
        /**
         * Specify the flaky test quarantine strategy:
         *
         * -PflakyTests=include: run all tests, including flaky tests.
         * -PflakyTests=exclude: run all tests, excluding flaky tests.
         * -PflakyTests=only: run flaky tests only.
         *
         * Default value (if absent) is "include".
         */
        const val FLAKY_TEST = "flakyTests"
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 05:13:29 GMT 2026
    - 18K bytes
    - Click Count (0)
  3. architecture/standards/0004-use-a-platform-architecture.md

    It is made up of 3 architecture modules:
    
    - **Runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    - **Configuration**: Allows the build structure and work, such as tasks, to be specified. This includes the project model, the DSL and so on.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            // Verify debug is disabled by default (good security practice)
            assertEquals("false", defaultSettings.get("onelogin.saml2.debug"));
    
            // Verify all security-related settings exist (they are set to false for compatibility,
            // but users should be able to override them via system properties)
            assertNotNull(defaultSettings.get("onelogin.saml2.security.nameid_encrypted"));
    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)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                            final Map<String, String> defaultMap = new HashMap<>(2);
                            defaultMap.put(Constants.ITEM_LABEL, msg);
                            defaultMap.put(Constants.ITEM_VALUE, "all");
                            langItems.add(defaultMap);
    
                            for (final String lang : supportedLanguages) {
                                final Locale locale = LocaleUtils.toLocale(lang);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 43.2K bytes
    - Click Count (0)
  6. LICENSE

          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
          control with that entity. For the purposes of this definition,
          "control" means (i) the power, direct or indirect, to cause the
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue May 08 21:35:34 GMT 2018
    - 11.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

                if (isEmptyContentWithLengthFinish(response)) {
                    logger.warn(
                            "[RAG:EVAL] Empty content with finish_reason=length detected (possible reasoning model token exhaustion). Falling back to all relevant. userMessage={}",
                            userMessage);
                    final List<String> allDocIds = searchResults.stream()
                            .map(doc -> getStringValue(doc, "doc_id"))
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            }
            return StringUtil.EMPTY;
        }
    
        /**
         * Replaces all occurrences of a regular expression pattern in the input string.
         *
         * @param input the input object to process
         * @param regex the regular expression pattern to match
         * @param replacement the replacement string
         * @return string with all matches replaced, or empty string if input is null
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25.4K bytes
    - Click Count (1)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/nullaway/NullawayStatusService.kt

                val toEnableCount = projectsToEnableNullaway.size
                val uncheckedCount = projectsWithUncheckedDeps.size
    
                if (enabledCount == seenProjectsCount) {
                    println("All have NullAway enabled.")
                } else {
                    println("NullAway enabled in ${enabledCount} ${projectS(enabledCount)}.")
    
                    if (projectsToEnableNullaway.isNotEmpty()) {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Aug 20 13:18:23 GMT 2025
    - 3.8K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/app/service/UserService.java

            // setup condition
            cb.query().addOrderBy_Name_Asc();
    
            // search
    
        }
    
        /**
         * Retrieves a list of all available users in the system.
         * Returns up to the maximum configured number of users.
         *
         * @return a list of all available users
         */
        public List<User> getAvailableUserList() {
            return userBhv.selectList(cb -> {
                cb.query().matchAll();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 06:22:27 GMT 2026
    - 9.3K bytes
    - Click Count (0)
Back to Top