Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,074 for loggers (0.3 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/httplog/httplog_test.go

    	logger := newLogged(req, tw)
    	logger.Write(nil)
    
    	if logger.status != http.StatusOK {
    		t.Errorf("expected status after write to be %v, got %v", http.StatusOK, logger.status)
    	}
    
    	tw = new(responsewriter.FakeResponseWriter)
    	logger = newLogged(req, tw)
    	logger.WriteHeader(http.StatusForbidden)
    	logger.Write(nil)
    
    	if logger.status != http.StatusForbidden {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 05 18:05:09 UTC 2021
    - 6.2K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

        private final Logger logger;
    
        public HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy) {
            this(stats, strategy, LoggerFactory.getLogger(HealthExpirationStrategy.class));
        }
    
        HealthExpirationStrategy(DaemonHealthStats stats, GarbageCollectorMonitoringStrategy strategy, Logger logger) {
            this.stats = stats;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/timeout/impl/DefaultTimeoutHandler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    import java.io.PrintWriter;
    import java.time.Duration;
    import java.util.Arrays;
    import java.util.concurrent.ScheduledFuture;
    import java.util.concurrent.TimeUnit;
    
    public class DefaultTimeoutHandler implements TimeoutHandler, Stoppable {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/AntBuilder.java

        /**
         * Sets the Ant message priority that should correspond to the Gradle "lifecycle" log level.  Any messages logged at this
         * priority (or more critical priority) will be logged at least at lifecycle in Gradle's logger.  If the Ant priority already maps to a
         * higher Gradle log level, it will continue to be logged at that level.
         *
         * @param logLevel The Ant log level to map to the Gradle lifecycle log level
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 7K bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/CodeNarcInvoker.groovy

    import org.gradle.api.internal.project.antbuilder.AntBuilderDelegate
    import org.gradle.internal.logging.ConsoleRenderer
    import org.slf4j.Logger
    import org.slf4j.LoggerFactory
    
    class CodeNarcInvoker implements Action<AntBuilderDelegate> {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(CodeNarcInvoker.class);
    
        private final CodeNarcActionParameters parameters
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 14:00:06 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ProgressBar.java

    import org.gradle.internal.nativeintegration.console.ConsoleMetaData;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.List;
    import java.util.concurrent.ExecutorService;
    import java.util.concurrent.Executors;
    import java.util.concurrent.Future;
    
    public class ProgressBar {
        private static final Logger LOGGER = LoggerFactory.getLogger(ProgressBar.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/log/syslog/syslog.go

    	return n.conn.Close()
    }
    
    // NewLogger creates a [log.Logger] whose output is written to the
    // system log service with the specified priority, a combination of
    // the syslog facility and severity. The logFlag argument is the flag
    // set passed through to [log.New] to create the Logger.
    func NewLogger(p Priority, logFlag int) (*log.Logger, error) {
    	s, err := New(p, "")
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LoadingCache.java

       * If the new value is loaded successfully it will replace the previous value in the cache; if an
       * exception is thrown while refreshing the previous value will remain, <i>and the exception will
       * be logged (using {@link java.util.logging.Logger}) and swallowed</i>.
       *
       * <p>Caches loaded by a {@link CacheLoader} will call {@link CacheLoader#reload} if the cache
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Aug 06 17:12:03 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/internal/Finalizer.java

     * stop itself.
     */
    // no @ElementTypesAreNonNullByDefault for the reasons discussed above
    public class Finalizer implements Runnable {
    
      private static final Logger logger = Logger.getLogger(Finalizer.class.getName());
    
      /** Name of FinalizableReference.class. */
      private static final String FINALIZABLE_REFERENCE = "com.google.common.base.FinalizableReference";
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/internal/Finalizer.java

     * stop itself.
     */
    // no @ElementTypesAreNonNullByDefault for the reasons discussed above
    public class Finalizer implements Runnable {
    
      private static final Logger logger = Logger.getLogger(Finalizer.class.getName());
    
      /** Name of FinalizableReference.class. */
      private static final String FINALIZABLE_REFERENCE = "com.google.common.base.FinalizableReference";
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top