- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 1,023 for loggers (0.12 sec)
-
cmd/server-main.go
for !result.HealthyRead { if debugNoExit { logger.Info("Not waiting for quorum since we are debugging.. possible cause unhealthy sets") logger.Info(result.String()) break } d := time.Duration(r.Float64() * float64(time.Second)) logger.Info("Waiting for quorum READ healthcheck to succeed retrying in %s.. possible cause unhealthy sets", d) logger.Info(result.String()) time.Sleep(d)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (1) -
android/guava/src/com/google/common/util/concurrent/AggregateFuture.java
* whenAll*().call*(), this future may be pending until the callback runs -- or even longer in * the case of callAsync(), which waits for the callback's returned future to complete. */ releaseResources(ALL_INPUT_FUTURES_PROCESSED); } /** * Clears fields that are no longer needed after this future has completed -- or at least all its
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 25 13:13:32 UTC 2024 - 16.2K bytes - Viewed (0) -
cmd/generic-handlers.go
// criticalErrorHandler handles panics and fatal errors by // `panic(logger.ErrCritical)` as done by `logger.CriticalIf`. // // It should be always the first / highest HTTP handler. func setCriticalErrorHandler(h http.Handler) http.Handler { return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { defer func() { if rec := recover(); rec == logger.ErrCritical { // handle stack := debug.Stack()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 18:10:04 UTC 2024 - 20.5K bytes - Viewed (0) -
cmd/notification.go
ng.Go(ctx, func() error { // Give 15 seconds to each remote call. // Errors are logged but not returned. ctx, cancel := context.WithTimeout(ctx, 15*time.Second) defer cancel() data, err := client.DownloadProfileData(ctx) if err != nil { reqInfo := (&logger.ReqInfo{}).AppendTags("peerAddress", client.host.String()) ctx := logger.SetReqInfo(ctx, reqInfo) peersLogOnceIf(ctx, err, client.host.String())
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 16:58:30 UTC 2024 - 46.2K bytes - Viewed (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
*/ @Rule public ExpectedException exception = ExpectedException.none(); private final Logger logger = Logger.getLogger(getClass()); /** * @throws Exception */ @Test public void testGetLogger() throws Exception { assertThat(Logger.getLogger(getClass()), is(sameInstance(Logger.getLogger(getClass())))); } /** * @throws Exception */ @Test
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exec/SuggestCreator.java
if (logger.isDebugEnabled()) { logger.debug("SuggestCreator is stopped.", e); } else if (logger.isInfoEnabled()) { logger.info("SuggestCreator is stopped."); } exitCode = Constants.EXIT_FAIL; } catch (final Throwable t) { logger.error("Suggest creator does not work correctly.", t);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JulLoggerAdapter.java
protected final String sourceClass; protected final java.util.logging.Logger logger; public JulLoggerAdapter(final Class<?> clazz) { sourceClass = clazz.getName(); logger = java.util.logging.Logger.getLogger(clazz.getName()); } @Override public boolean isFatalEnabled() { return logger.isLoggable(Level.SEVERE); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/log/JclLoggerAdapter.java
protected final Log logger; public JclLoggerAdapter(final Class<?> clazz) { sourceClass = clazz.getName(); logger = LogFactory.getLog(clazz); } @Override public boolean isFatalEnabled() { return logger.isFatalEnabled(); } @Override public void fatal(final String message) { logger.fatal(message); } @Override
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java
if (logger.isDebugEnabled()) { logger.debug("Create thumbnail task: {}", task); } return task; } @Override public boolean generate(final String thumbnailId, final File outputFile) { if (logger.isDebugEnabled()) { logger.debug("Generate Thumbnail: {}", thumbnailId); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
this.logger = logger; } public void testArtifact(Artifact node) {} public void startProcessChildren(Artifact artifact) { indent += " "; } public void endProcessChildren(Artifact artifact) { indent = indent.substring(2); } public void includeArtifact(Artifact artifact) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0)