Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getExecutionTime (0.26 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultImpl.java

            accessResultData = accessResultDataAsOne;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.AccessResult#getExecutionTime()
         */
        @Override
        public Integer getExecutionTime() {
            return executionTime;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java

         */
        void setCreateTime(Long createTime);
    
        /**
         * Returns the execution time of the access.
         *
         * @return the execution time
         */
        Integer getExecutionTime();
    
        /**
         * Sets the execution time of the access.
         *
         * @param executionTime the execution time
         */
        void setExecutionTime(Integer executionTime);
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

            if (logger.isDebugEnabled()) {
                logger.debug("Processing the response. Http Status: {}, Exec Time: {}", responseData.getHttpStatusCode(),
                        responseData.getExecutionTime());
            }
        }
    
        /**
         * Processes redirect location log events.
         *
         * @param objs the log objects (should contain ResponseData)
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java

            this.sessionId = sessionId;
        }
    
        /**
         * Gets the execution time for processing this response.
         *
         * @return the execution time in milliseconds
         */
        public long getExecutionTime() {
            return executionTime;
        }
    
        /**
         * Sets the execution time for processing this response.
         *
         * @param executionTime the execution time in milliseconds
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
    
            @Override
            public Long getCreateTime() {
                return System.currentTimeMillis();
            }
    
            @Override
            public Integer getExecutionTime() {
                return 100;
            }
    
            @Override
            public Long getContentLength() {
                return 1000L;
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top