Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 613 for SetLogger (0.16 sec)

  1. mockwebserver-junit4/src/main/kotlin/mockwebserver3/junit4/MockWebServerRule.kt

          server.shutdown()
        } catch (e: IOException) {
          logger.log(Level.WARNING, "MockWebServer shutdown failed", e)
        }
      }
    
      @ExperimentalOkHttpApi
      companion object {
        private val logger = Logger.getLogger(MockWebServerRule::class.java.name)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContextTest.groovy

        OutputEventListenerBackedLoggerContext context = new OutputEventListenerBackedLoggerContext(Time.clock())
    
        private OutputEventListenerBackedLogger logger(String name) {
            context.getLogger(name)
        }
    
        def "can retrieve logger named #name"() {
            expect:
            logger(name).name == name
    
            where:
            name << [ROOT_LOGGER_NAME, "foo", "foo.bar"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/FessApiAdminAction.java

    import org.codelibs.fess.exception.InvalidAccessTokenException;
    
    public abstract class FessApiAdminAction extends FessApiAction {
    
        private static final Logger logger = LogManager.getLogger(FessApiAdminAction.class);
    
        @Override
        protected boolean isAccessAllowed() {
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ingest/IngestFactory.java

    import java.util.Arrays;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    
    public class IngestFactory {
        private static final Logger logger = LogManager.getLogger(IngestFactory.class);
    
        private Ingester[] ingesters = {};
    
        public synchronized void add(final Ingester ingester) {
            if (logger.isDebugEnabled()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/ExecHandleShutdownHookAction.java

    /**
     * Terminates the external running 'sub' process when the Gradle process is being cancelled.
     */
    public class ExecHandleShutdownHookAction implements Runnable {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(ExecHandleShutdownHookAction.class);
        private final ExecHandle execHandle;
    
        public ExecHandleShutdownHookAction(ExecHandle execHandle) {
            if (execHandle == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/lang/ThreadUtil.java

    import org.codelibs.core.log.Logger;
    
    /**
     * Utility class for Thread class
     *
     * @author shinsuke
     *
     */
    public abstract class ThreadUtil {
    
        private static final Logger logger = Logger.getLogger(ThreadUtil.class);
    
        public static void sleep(final long millis) {
            if (millis < 1L) {
                return;
            }
            try {
                Thread.sleep(millis);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java

    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.fess.util.ComponentUtil;
    
    public class PurgeThumbnailJob {
        private static final Logger logger = LogManager.getLogger(PurgeThumbnailJob.class);
    
        private long expiry = 30 * 24 * 60 * 60 * 1000L;
    
        public String execute() {
            try {
                final long count = ComponentUtil.getThumbnailManager().purge(getExpiry());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/ActionExecutionWorker.java

     *
     * <p>It is instantiated and called from {@link SystemApplicationClassLoaderWorker}.<p>
     */
    public class ActionExecutionWorker implements Action<WorkerProcessContext> {
        private static final Logger LOGGER = LoggerFactory.getLogger(ActionExecutionWorker.class);
        private final Action<? super WorkerProcessContext> action;
    
        public ActionExecutionWorker(Action<? super WorkerProcessContext> action) {
            this.action = action;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainJavaCompiler.java

    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    public class DefaultToolchainJavaCompiler implements JavaCompiler {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultToolchainJavaCompiler.class);
    
        private final JavaToolchain javaToolchain;
        private final JavaCompilerFactory compilerFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/ServerWithExpectations.groovy

                this.failure = failure
            }
        }
    
        abstract protected List<? extends ServerExpectation> getExpectations()
    
        abstract protected void stop()
    
        abstract protected Logger getLogger()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top