Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,022 for Hoeger (0.18 sec)

  1. src/main/java/org/codelibs/core/log/Logger.java

            assertArgumentNotNull("clazz", clazz);
    
            if (!initialized) {
                initialize();
            }
            Logger logger = loggers.get(clazz);
            if (logger == null) {
                logger = new Logger(clazz);
                loggers.put(clazz, logger);
            }
            return logger;
        }
    
        /**
         * フォーマットされたメッセージ文字列を返します。
         *
         * @param messageCode
    Java
    - Registered: Fri Apr 19 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  2. logger/logger.go

    type Writer interface {
    	Printf(string, ...interface{})
    }
    
    // Config logger config
    type Config struct {
    	SlowThreshold             time.Duration
    	Colorful                  bool
    	IgnoreRecordNotFoundError bool
    	ParameterizedQueries      bool
    	LogLevel                  LogLevel
    }
    
    // Interface logger interface
    type Interface interface {
    	LogMode(LogLevel) Interface
    Go
    - Registered: Sun Apr 21 09:35:09 GMT 2024
    - Last Modified: Tue Nov 07 02:19:41 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  3. fastapi/logger.py

    import logging
    
    Python
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Mon Dec 09 19:02:44 GMT 2019
    - 54 bytes
    - Viewed (0)
  4. internal/logger/logger.go

    package logger
    
    import (
    	"context"
    	"encoding/hex"
    	"errors"
    	"fmt"
    	"go/build"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/minio/highwayhash"
    	"github.com/minio/madmin-go/v3"
    	xhttp "github.com/minio/minio/internal/http"
    	"github.com/minio/pkg/v2/logger/message/log"
    )
    
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. 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";
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Aug 23 12:54:09 GMT 2023
    - 9.4K bytes
    - Viewed (0)
  6. 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";
    
      /**
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Aug 23 12:54:09 GMT 2023
    - 9.4K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/collector/DefaultProjectsSelector.java

                LOGGER.warn("");
                LOGGER.warn("For this reason, future Maven versions might no"
                        + " longer support building such malformed projects.");
                LOGGER.warn("");
            }
    
            return projects;
        }
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.7K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

     */
    package okhttp3.internal.concurrent
    
    import java.util.logging.Level
    import java.util.logging.Logger
    
    internal inline fun Logger.taskLog(
      task: Task,
      queue: TaskQueue,
      messageBlock: () -> String,
    ) {
      if (isLoggable(Level.FINE)) {
        log(task, queue, messageBlock())
      }
    }
    
    internal inline fun <T> Logger.logElapsed(
      task: Task,
      queue: TaskQueue,
      block: () -> T,
    ): T {
      var startNs = -1L
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/FinalizableReferenceQueue.java

       * strangely when run in JDK 9. We are considering this a known issue. Please see
       * https://github.com/google/guava/issues/3086 for more information.
       */
    
      private static final Logger logger = Logger.getLogger(FinalizableReferenceQueue.class.getName());
    
      private static final String FINALIZER_CLASS_NAME = "com.google.common.base.internal.Finalizer";
    
      /** Reference to Finalizer.startFinalizer(). */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/FinalizableReferenceQueue.java

       * strangely when run in JDK 9. We are considering this a known issue. Please see
       * https://github.com/google/guava/issues/3086 for more information.
       */
    
      private static final Logger logger = Logger.getLogger(FinalizableReferenceQueue.class.getName());
    
      private static final String FINALIZER_CLASS_NAME = "com.google.common.base.internal.Finalizer";
    
      /** Reference to Finalizer.startFinalizer(). */
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 26 20:07:17 GMT 2023
    - 13.1K bytes
    - Viewed (0)
Back to top