Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 116 for loggers (0.28 sec)

  1. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/Logging.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.base
    
    import org.gradle.api.logging.Logger
    import org.gradle.api.logging.Logging
    
    
    /**
     * Configuration Cache logger.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 842 bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycles.java

    @Named
    @Singleton
    public class DefaultLifecycles {
        public static final String[] STANDARD_LIFECYCLES = {"clean", "default", "site", "wrapper"};
    
        private final Logger logger = LoggerFactory.getLogger(getClass());
    
        // @Configuration(source="org/apache/maven/lifecycle/lifecycles.xml")
    
        private final Lookup lookup;
    
        private final LifecycleRegistry registry;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    	dir           telemetry.Dir           // the telemetry dir to process
    
    	uploadServerURL string
    	startTime       time.Time
    
    	cache parsedCache
    
    	logFile *os.File
    	logger  *log.Logger
    }
    
    // newUploader creates a new uploader to use for running the upload for the
    // given config.
    //
    // Uploaders should only be used for one call to [uploader.Run].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultContextAwareTaskLoggerCodec.kt

            decodePreservingIdentity { id ->
                DefaultContextAwareTaskLogger(Logging.getLogger(Task::class.java)).also { logger ->
                    read()?.let { rewriter ->
                        logger.messageRewriter = rewriter as MessageRewriter
                    }
                    isolate.identities.putInstance(id, logger)
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/registry/PersistentDaemonRegistry.java

        private final ObjectHolder<DaemonRegistryContent> cache;
        private final Lock lock = new ReentrantLock();
        private final File registryFile;
    
        private static final Logger LOGGER = Logging.getLogger(PersistentDaemonRegistry.class);
    
        public PersistentDaemonRegistry(File registryFile, FileLockManager fileLockManager, Chmod chmod) {
            this.registryFile = registryFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/DefaultMemoryManager.java

    import org.gradle.internal.event.ListenerManager;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.concurrent.ScheduledFuture;
    import java.util.concurrent.TimeUnit;
    
    public class DefaultMemoryManager implements MemoryManager, Stoppable {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultMemoryManager.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/services/FileSystemServices.java

    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static org.gradle.internal.nativeintegration.filesystem.services.JdkFallbackHelper.newInstanceOrFallback;
    
    public class FileSystemServices implements ServiceRegistrationProvider {
        private static final Logger LOGGER = LoggerFactory.getLogger(FileSystemServices.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)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

    public class SingleUseDaemonClient extends DaemonClient {
        public static final String MESSAGE = "To honour the JVM settings for this build a single-use Daemon process will be forked.";
        private static final Logger LOGGER = Logging.getLogger(SingleUseDaemonClient.class);
        private final DocumentationRegistry documentationRegistry;
    
        public SingleUseDaemonClient(
            DaemonConnector connector,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. pkg/volume/util/operationexecutor/fakegenerator.go

    }
    
    func (f *fakeOGCounter) GenerateAttachVolumeFunc(logger klog.Logger, volumeToAttach VolumeToAttach, actualStateOfWorld ActualStateOfWorldAttacherUpdater) volumetypes.GeneratedOperations {
    	return f.recordFuncCall("GenerateAttachVolumeFunc")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. cni/pkg/log/uds.go

    	defer l.mu.Unlock()
    	for _, m := range messages {
    		logger := pluginLog
    		// For any k/v pairs, add them back
    		for k, v := range m.Arbitrary {
    			logger = logger.WithLabels(k, v)
    		}
    		// There is no fatal log from CNI plugin
    		switch m.Level {
    		case "debug":
    			logger.LogWithTime(istiolog.DebugLevel, m.Msg, m.Time)
    		case "info":
    			logger.LogWithTime(istiolog.InfoLevel, m.Msg, m.Time)
    		case "warn":
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:28 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top