- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 851 for took (0.04 sec)
-
cmd/iam-object-store.go
// No need to return errors for failed expiration of STS users } took := time.Since(purgeStart).Seconds() if took > maxDurationSecondsForLog { // Log if we took a lot of time to load. logger.Info("IAM expired STS purge took %.2fs", took) } // Store the newly populated map in the iam cache. This takes care of // removing stale entries from the existing map.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 26.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java
import java.util.List; public class SuggestDeleteResponse { protected final List<Throwable> errors = new ArrayList<>(); protected final long took; protected SuggestDeleteResponse(final List<Throwable> errors, final long took) { this.took = took; if (errors != null && !errors.isEmpty()) { this.errors.addAll(errors); } } public boolean hasError() {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsPagingResultBean.java
this.builder = builder; } public String getQueryDsl() { return builder.toString(); } public long getTook() { return took; } public void setTook(long took) { this.took = took; } public int getTotalShards() { return totalShards; } public void setTotalShards(int totalShards) { this.totalShards = totalShards;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsPagingResultBean.java
this.builder = builder; } public String getQueryDsl() { return builder.toString(); } public long getTook() { return took; } public void setTook(long took) { this.took = took; } public int getTotalShards() { return totalShards; } public void setTotalShards(int totalShards) { this.totalShards = totalShards;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java
protected final long took; protected SuggestIndexResponse(final int numberOfSuggestDocs, final int numberOfInputDocs, final List<Throwable> errors, final long took) { this.numberOfSuggestDocs = numberOfSuggestDocs; this.numberOfInputDocs = numberOfInputDocs; this.took = took; if (errors == null || errors.isEmpty()) { hasError = false;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/allcommon/EsPagingResultBean.java
this.builder = builder; } public String getQueryDsl() { return builder.toString(); } public long getTook() { return took; } public void setTook(long took) { this.took = took; } public int getTotalShards() { return totalShards; } public void setTotalShards(int totalShards) { this.totalShards = totalShards;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.5K bytes - Viewed (0) -
cmd/local-locker_test.go
}) if !ok || err != nil { t.Fatal("failed:", err, ok) } } } start := time.Now() l.expireOldLocks(time.Hour) t.Logf("Scan Took: %v. Left: %d/%d", time.Since(start).Round(time.Millisecond), len(l.lockUID), len(l.lockMap)) if len(l.lockMap) != locks { t.Fatalf("objects deleted, want %d != got %d", locks, len(l.lockMap)) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 10:24:01 UTC 2024 - 11.9K bytes - Viewed (0) -
test-site/app/controllers/Suggest.java
try { long start = System.currentTimeMillis(); SuggestIndex suggestIndex = new SuggestIndex(); suggestIndex.index(); Logger.info("index took: " + ((System.currentTimeMillis() - start) / 1000) + "sec"); return ok("Finished to create suggest from content"); } catch (Exception e){ Logger.error("Failed to create suggest index. ", e);
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Fri Nov 06 08:48:32 UTC 2015 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/RandomAccessFileTest.java
assertArrayEquals("Data matches at offset " + p, actual, verify); p += read; } assertEquals("Expecting EOF", -1, is.read(buffer, 0, 1)); log.debug("Read " + length + " took " + ( System.currentTimeMillis() - start )); } /** * @param bufSize * @param length * @param os * @throws IOException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 11.4K bytes - Viewed (0) -
src/test/java/jcifs/tests/ReadWriteTest.java
p += read; } if ( expectEof ) { assertEquals("Expecting EOF", -1, is.read(buffer, 0, 1)); } log.debug("Read " + length + " took " + ( System.currentTimeMillis() - start )); } /** * @param bufSize * @param length * @param os * @throws IOException */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13.2K bytes - Viewed (0)