Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 116 for loggers (0.47 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/LoggingIncubatingFeatureHandler.java

     * limitations under the License.
     */
    
    package org.gradle.internal.featurelifecycle;
    
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.HashSet;
    import java.util.Set;
    
    public class LoggingIncubatingFeatureHandler implements FeatureHandler<IncubatingFeatureUsage> {
        private static final Logger LOGGER = LoggerFactory.getLogger(LoggingIncubatingFeatureHandler.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/plugins.go

    // initialization code for kubelet really, really need a through refactor.
    func ProbeAttachableVolumePlugins(logger klog.Logger) ([]volume.VolumePlugin, error) {
    	var err error
    	allPlugins := []volume.VolumePlugin{}
    	allPlugins, err = appendAttachableLegacyProviderVolumes(logger, allPlugins, utilfeature.DefaultFeatureGate)
    	if err != nil {
    		return allPlugins, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:17:15 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AbstractJUnitTestClassProcessor.java

    import org.gradle.internal.actor.Actor;
    import org.gradle.internal.actor.ActorFactory;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    public abstract class AbstractJUnitTestClassProcessor implements TestClassProcessor {
        private static final Logger LOGGER = LoggerFactory.getLogger(AbstractJUnitTestClassProcessor.class);
    
        private final ActorFactory actorFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. internal/logger/target/console/console.go

    package console
    
    import (
    	"encoding/json"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    
    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/pkg/v3/logger/message/log"
    )
    
    // Target implements loggerTarget to send log
    // in plain or json format to the standard output.
    type Target struct {
    	output io.Writer
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. cmd/config-versions.go

    	// Storage class configuration
    	StorageClass storageclass.Config `json:"storageclass"`
    
    	// Notification queue configuration.
    	Notify notify.Config `json:"notify"`
    
    	// Logger configuration
    	Logger logger.Config `json:"logger"`
    
    	// Compression configuration
    	Compression compress.Config `json:"compress"`
    
    	// OpenID configuration
    	OpenID openid.Config `json:"openid"`
    
    	// External policy enforcements.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-example-client/src/main/java/org/gradle/caching/example/ExampleBuildCacheClient.java

    import org.gradle.internal.vfs.impl.AbstractVirtualFileSystem;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.time.Duration;
    import java.util.Collections;
    
    public class ExampleBuildCacheClient {
        private static final Logger LOGGER = LoggerFactory.getLogger(DirectoryBuildCache.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 19:35:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetector.java

        private final ExecHandleFactory execHandleFactory;
        private final TemporaryFileProvider temporaryFileProvider;
    
        private final Logger logger = LoggerFactory.getLogger(DefaultJvmMetadataDetector.class);
    
        @Inject
        public DefaultJvmMetadataDetector(
            final ExecHandleFactory execHandleFactory,
            final TemporaryFileProvider temporaryFileProvider
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 02:32:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCacheCleanupExecutor.java

    import org.gradle.internal.time.Timer;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.io.IOException;
    import java.io.UncheckedIOException;
    import java.time.Duration;
    import java.time.Instant;
    import java.util.Optional;
    
    public class DefaultCacheCleanupExecutor implements CacheCleanupExecutor {
        private static final Logger LOGGER = LoggerFactory.getLogger(DefaultCacheCleanupExecutor.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-services/src/main/java/org/gradle/internal/daemon/clientinput/ClientInputForwarder.java

                @Override
                public void onEndOfInput() {
                    LOGGER.debug("Closing this process' stdin at end of input.");
                    try {
                        stdInStream.close();
                        inputReader.putInput(UserInputReader.END_OF_INPUT);
                    } finally {
                        LOGGER.debug("This process will no longer process any forwarded input.");
                    }
                }
            };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top