Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for execTime (0.06 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/BuildSummary.java

         * @param execTime The exec time of the project in milliseconds.
         * @param wallTime The wall time of the project in milliseconds.
         */
        protected BuildSummary(MavenProject project, long execTime, long wallTime) {
            this.project = Objects.requireNonNull(project, "project cannot be null");
            // TODO Validate for < 0?
            this.execTime = execTime;
            this.wallTime = wallTime;
        }
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/BuildSuccess.java

         * @param wallTime The wall time of the project in milliseconds.
         * @param execTime The exec time of the project in milliseconds.
         */
        public BuildSuccess(MavenProject project, long wallTime, long execTime) {
            super(project, wallTime, execTime);
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        }
    
        public void setAppendHighlightParams(final String appendHighlightParams) {
            this.appendHighlightParams = appendHighlightParams;
        }
    
        public void setExecTime(final String execTime) {
            this.execTime = execTime;
        }
    
        public void setPageSize(final int pageSize) {
            this.pageSize = pageSize;
        }
    
        public void setCurrentPageNumber(final int currentPageNumber) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. impl/maven-core/src/main/java/org/apache/maven/execution/BuildFailure.java

         * @param execTime The exec time of the project in milliseconds.
         * @param wallTime The wall time of the project in milliseconds.
         * @param cause The cause of the build failure, may be {@code null}.
         */
        public BuildFailure(MavenProject project, long execTime, long wallTime, Throwable cause) {
            super(project, execTime, wallTime);
            this.cause = cause;
        }
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public void setSearchQuery(final String searchQuery) {
            this.searchQuery = searchQuery;
        }
    
        public long getExecTime() {
            return execTime;
        }
    
        public void setExecTime(final long execTime) {
            this.execTime = execTime;
        }
    
        public FacetResponse getFacetResponse() {
            return facetResponse;
        }
    
        public boolean isPartialResults() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:11:58 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            if (!accessResultList.isEmpty()) {
                final long execTime = systemHelper.getCurrentTimeAsLong();
                final int size = accessResultList.size();
                dataService.update(accessResultList);
                accessResultList.clear();
                final long time = systemHelper.getCurrentTimeAsLong() - execTime;
                if (logger.isDebugEnabled()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            final long execTime = systemHelper.getCurrentTimeAsLong() - startTime;
            crawlingInfoHelper.putToInfoMap(Constants.DATA_CRAWLING_EXEC_TIME, Long.toString(execTime));
            if (logger.isInfoEnabled()) {
                logger.info("[EXEC TIME] crawling time: {}ms", execTime);
            }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistAction.java

                RenderDataUtil.register(data, "facetResponse", facetResponse);
                RenderDataUtil.register(data, "appendHighlightParams", appendHighlightParams);
                RenderDataUtil.register(data, "execTime", execTime);
                RenderDataUtil.register(data, "pageSize", pageSize);
                RenderDataUtil.register(data, "currentPageNumber", currentPageNumber);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 24 09:03:45 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SearchHelper.java

            nf.setMaximumIntegerDigits(2);
            nf.setMaximumFractionDigits(2);
            String execTime;
            try {
                execTime = nf.format((double) queryResponseList.getExecTime() / 1000);
            } catch (final Exception e) {
                execTime = StringUtil.EMPTY;
            }
            data.setExecTime(execTime);
    
            final String queryId = ComponentUtil.getQueryHelper().generateId();
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                                final StringBuilder buf = new StringBuilder(1000);
                                buf.append("[SEARCH TIMEOUT] {\"exec_time\":").append(execTime)//
                                        .append(",\"request\":").append(searchRequestBuilder.toString())//
                                        .append(",\"response\":").append(r.toString()).append('}');
                                logger.warn(buf.toString());
                            }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jul 22 06:56:21 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top