Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 471 for _all (0.02 seconds)

  1. dbflute_fess/dfprop/classificationDeploymentMap.dfprop

    # The table name '$$ALL$$' means all tables are target.
    # The table names and column names are treated as case insensitive.
    #
    # You don't need specify here about table classifications.
    # Because table classifications are auto-deployed by relation information.
    #
    # Specification:
    # map: {
    #     [table-name or $$ALL$$] = map:{
    #         ; [column-name (with hint)]=[classification-name]
    #     }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 795 bytes
    - Click Count (0)
  2. build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts

            val attributesFactory = gradle.serviceOf<AttributesFactory>()
            configurations.all {
                if (isCanBeResolved && !isCanBeConsumed) {
                    resolutionStrategy.dependencySubstitution.all {
                        val requested = this.requested as? ModuleComponentSelector ?: return@all
                        keepPatterns.forEach { coordinates, _ ->
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 18:27:10 GMT 2026
    - 5.8K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/llm/RelevanceEvaluationResult.java

        }
    
        /**
         * Creates a fallback result that includes all documents as relevant.
         * Used when evaluation fails and we want to include all search results.
         *
         * @param allDocIds all document IDs from search results
         * @return evaluation result with all documents marked as relevant
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java

            facetQueryView.init();
            int firstSize = facetQueryView.getQueryMap().size();
            int firstQueriesCount = testFacetInfo.getAddedQueries().size();
    
            // Call init again
            facetQueryView.init();
    
            // Size should remain the same
            assertEquals(firstSize, facetQueryView.getQueryMap().size());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

            // Default constructor
        }
    
        /**
         * Inserts a new user across all authentication chains.
         * @param user The user to insert.
         */
        public void insert(final User user) {
            chains().of(stream -> stream.forEach(c -> c.update(user)));
        }
    
        /**
         * Changes the password for a user across all authentication chains.
         * @param username The username for which to change the password.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/it/admin/FailureUrlTests.java

        }
    
        /**
         * Test: Delete all failure URL logs
         */
        private void testDeleteAllFailureUrlLogs() {
            logger.info("[BEGIN] testDeleteAllFailureUrlLogs");
    
            // Delete all logs
            final Map<String, Object> requestBody = new HashMap<>();
            checkMethodBase(requestBody).delete(API_PATH + "/all").then().body("response.status", equalTo(0));
            refresh();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  7. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

    ent1\\work\\f63322e10dd6b396\\intTestHomeDir\\distributions-full --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED -Xms256m -Xmx1024m -Dfile.encoding=UTF-8 -Djava.io.tmpdir=C:\\tcagent1\\work\\f63322e10dd...
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jul 12 03:42:46 GMT 2024
    - 14.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/it/admin/CrawlerLogTests.java

            logger.info("Number of crawling info logs before deletion: {}", sizeBeforeDeletion);
    
            // Delete all old crawling sessions
            deleteMethod("/api/admin/crawlinginfo/all").then().body("response.status", equalTo(0));
            refresh();
    
            // Verify all old sessions are deleted (size should be 0 after deletion)
            final List<Map<String, Object>> logListAfter = readCrawlingInfo(webConfigId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Mar 30 14:01:34 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        }
    
        /**
         * Deletes all words from the suggest index.
         *
         * @return true if the operation was successful, false otherwise.
         */
        public boolean deleteAllWords() {
            final SuggestDeleteResponse response = suggester.indexer().deleteAll();
            if (response.hasError()) {
                logger.warn("Failed to delete all words.", response.getErrors().get(0));
                return false;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/helper/IndexingHelper.java

        }
    
        /**
         * Retrieves all child documents that belong to the specified parent document.
         *
         * @param searchEngineClient the search engine client to use for retrieval
         * @param id the parent document ID whose children should be retrieved
         * @param fields the fields to include in the response (null for all fields)
         * @return a list of child documents
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 26.1K bytes
    - Click Count (0)
Back to Top