Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 70 for SetLogger (0.16 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ExecuteBuild.java

    /**
     * Actually executes the build.
     *
     * Typically the last action in the pipeline.
     */
    public class ExecuteBuild extends BuildCommandOnly {
    
        private static final Logger LOGGER = Logging.getLogger(ExecuteBuild.class);
    
        final private BuildActionExecutor<BuildActionParameters, BuildRequestContext> actionExecuter;
        private final DaemonRunningStats runningStats;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultPersistentDirectoryCache.java

    import java.util.function.Consumer;
    
    public class DefaultPersistentDirectoryCache extends DefaultPersistentDirectoryStore implements ReferencablePersistentCache {
    
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultPersistentDirectoryCache.class);
    
        private final Properties properties = new Properties();
        private final Consumer<? super PersistentCache> initAction;
    
        public DefaultPersistentDirectoryCache(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:20:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

     *
     * <p>Currently, dispatch is thread safe, and receive is not.
     */
    public class DaemonClientConnection implements Connection<Message> {
        private final static Logger LOG = Logging.getLogger(DaemonClientConnection.class);
        private final RemoteConnection<Message> connection;
        private final DaemonConnectDetails daemon;
        private final StaleAddressDetector staleAddressDetector;
        private boolean hasReceived;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaLanguageServices.java

                    return new AnnotationProcessorDetector(cacheFactory, LoggerFactory.getLogger(AnnotationProcessorDetector.class), loggingConfiguration.getShowStacktrace() != ShowStacktrace.INTERNAL_EXCEPTIONS);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/AbstractReportTask.java

                getClientMetaData(),
                getOutputFile(),
                getTextOutputFactory()
            );
        }
    
        void logClickableOutputFileUrl() {
            if (shouldCreateReportFile()) {
                getLogger().lifecycle("See the report at: {}", clickableOutputFileUrl());
            }
        }
    
        String clickableOutputFileUrl() {
            return new ConsoleRenderer().asClickableFileUrl(getOutputFile());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FileSystemServices.java

    public class FileSystemServices implements ServiceRegistrationProvider {
        private static final Logger LOGGER = LoggerFactory.getLogger(FileSystemServices.class);
    
        public void configure(ServiceRegistration registration) {
            registration.add(GenericFileSystem.Factory.class);
            registration.add(StatStatistics.Collector.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

     */
    public class ThrottlingOutputEventListener implements OutputEventListener {
        private static final Logger LOGGER = LoggerFactory.getLogger(ThrottlingOutputEventListener.class);
    
        private final OutputEventListener listener;
    
        private final ScheduledExecutorService executor;
        private final Clock clock;
        private final int throttleMs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/store/CachedStoreFactory.java

    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.atomic.AtomicLong;
    import java.util.function.Supplier;
    
    public class CachedStoreFactory<T> implements Closeable {
    
        private static final Logger LOG = Logging.getLogger(CachedStoreFactory.class);
        private static final int CACHE_SIZE = Integer.getInteger("org.gradle.api.internal.artifacts.ivyservice.resolveengine.store.cacheSize", 100);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipUpToDateStep.java

    public class SkipUpToDateStep<C extends IncrementalChangesContext> implements Step<C, UpToDateResult> {
        private static final Logger LOGGER = LoggerFactory.getLogger(SkipUpToDateStep.class);
    
        private final Step<? super C, ? extends AfterExecutionResult> delegate;
    
        public SkipUpToDateStep(Step<? super C, ? extends AfterExecutionResult> delegate) {
            this.delegate = delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/NormalizingGroovyCompiler.java

     */
    public class NormalizingGroovyCompiler implements Compiler<GroovyJavaJointCompileSpec> {
        private static final Logger LOGGER = Logging.getLogger(NormalizingGroovyCompiler.class);
        private final Compiler<GroovyJavaJointCompileSpec> delegate;
    
        public NormalizingGroovyCompiler(Compiler<GroovyJavaJointCompileSpec> delegate) {
            this.delegate = delegate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top