Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for execTime (0.09 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/webapp/WEB-INF/view/searchResults.jsp

    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if>
    			<c:if test="${execTime!=null}">
    				<la:message key="labels.search_result_time" arg0="${f:h(execTime)}" />
    			</c:if>
    		</p>
    		<c:if test="${! empty sdh }">
    		<p>
    			<la:message key="labels.similar_doc_result_status" />
    		</p>
    		</c:if>
    	</div>
    </div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					arg2="${f:h(currentStartRecordNumber)}"
    					arg3="${f:h(currentEndRecordNumber)}" />
    			</c:if>
    			<c:if test="${execTime!=null}">
    				<la:message key="labels.search_result_time" arg0="${f:h(execTime)}" />
    			</c:if>
    		</p>
    		<c:if test="${! empty sdh }">
    		<p>
    			<la:message key="labels.similar_doc_result_status" />
    		</p>
    		</c:if>
    	</div>
    </div>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
Back to top