Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for track (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

        protected String charset = Constants.UTF_8;
    
        /** Helper for managing content length limits */
        @Resource
        protected ContentLengthHelper contentLengthHelper;
    
        /** Flag to track initialization status */
        protected AtomicBoolean isInit = new AtomicBoolean(false);
    
        /**
         * Constructs a new FileSystemClient.
         */
        public FileSystemClient() {
            // Default constructor
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Nov 23 12:19:14 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         * Defaults to normal thread priority.
         */
        protected int crawlerPriority = Thread.NORM_PRIORITY;
    
        /**
         * Thread-safe list of active data crawling threads.
         * Used to track and manage all currently running crawler threads.
         */
        protected final List<DataCrawlingThread> dataCrawlingThreadList = Collections.synchronizedList(new ArrayList<>());
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

                        } else {
                            doc.put(scoreField, Float.valueOf(rrfScore));
                            documentsByIdMap.put(id, doc);
                        }
                        // Track documents from main searcher (index 0) within window size
                        if (searcherIndex == 0 && docRank < windowSize / 2) {
                            mainSearcherIdSet.add(id);
                        }
                    }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        /** Array of supported file protocols for URL classification. */
        protected String[] fileProtocols = { "file:", "smb:", "smb1:", "ftp:", "storage:" };
    
        /** Queue to track the current XML element hierarchy during parsing. */
        protected LinkedList<String> tagQueue;
    
        /** List to store parsed label types for access control. */
        protected List<LabelType> labelList;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

         * Each access result is transformed into a document map and added to the document list.
         *
         * @param docList the document list to add processed documents to
         * @param accessResultList the list to track processed access results for cleanup
         * @param arList the list of access results to process
         */
        private void processAccessResults(final DocList docList, final List<OpenSearchAccessResult> accessResultList,
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 32.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    query.max.length=1000
    # Timeout (ms) for search queries.
    query.timeout=10000
    # Whether to enable logging for query timeouts.
    query.timeout.logging=true
    # Maximum number of total hits to track in queries.
    query.track.total.hits=10000
    # Fields used for geo search queries.
    query.geo.fields=location
    # Parameter name for browser language in queries.
    query.browser.lang.parameter.name=browser_lang
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 11 09:47:03 UTC 2025
    - 54.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'query.track.total.hits'. <br>
         * The value is, e.g. 10000 <br>
         * comment: Maximum number of total hits to track in queries.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getQueryTrackTotalHits();
    
        /**
         * Get the value for the key 'query.track.total.hits' as {@link Integer}. <br>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 525.7K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

             */
            public SearchConditionBuilder scroll() {
                isScroll = true;
                return this;
            }
    
            /**
             * Sets the track total hits configuration.
             *
             * @param trackTotalHits the track total hits setting
             * @return this builder for method chaining
             */
            public SearchConditionBuilder trackTotalHits(final String trackTotalHits) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 122.4K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String FESS_VAR_PATH = "fess.var.path";
    
        /** Fess log level configuration key. */
        public static final String FESS_LOG_LEVEL = "fess.log.level";
    
        /** Track total hits configuration key. */
        public static final String TRACK_TOTAL_HITS = "track_total_hits";
    
        /** System property prefix for Fess configuration. */
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 35.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/curl/CurlTest.java

            // ## Note: There's no Curl.trace() factory method, but we can use the constructor ##
    
            // ## Act ##
            final CurlRequest request = new CurlRequest(Method.TRACE, "http://example.com");
    
            // ## Assert ##
            assertNotNull(request);
            assertEquals(Method.TRACE, request.method());
        }
    
        @Test
        public void test_MethodEnumValueOf() {
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 16.3K bytes
    - Viewed (0)
Back to top