Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 159 for click (0.27 sec)

  1. platforms/core-runtime/logging/src/main/java/org/slf4j/impl/StaticLoggerBinder.java

        private static final String LOGGER_FACTORY_CLASS_STR = OutputEventListenerBackedLoggerContext.class.getName();
    
        private final OutputEventListenerBackedLoggerContext factory = new OutputEventListenerBackedLoggerContext(Time.clock());
    
        public static StaticLoggerBinder getSingleton() {
            return SINGLETON;
        }
    
        /**
         * Declare the version of the SLF4J API this implementation is compiled against.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultGarbageCollectionMonitor.java

                    return element.getName().equals(gcStrategy.getGarbageCollectorName());
                }
            });
            ScheduledFuture<?> ignored = pollingExecutor.scheduleAtFixedRate(new GarbageCollectionCheck(Time.clock(), garbageCollectorMXBean, gcStrategy.getHeapPoolName(), heapEvents, gcStrategy.getNonHeapPoolName(), nonHeapEvents), POLL_DELAY_SECONDS, POLL_INTERVAL_SECONDS, TimeUnit.SECONDS);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossBuildPerformanceTestRunner.groovy

                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
                vcsCommits: [Git.current().commitId],
                startTime: clock.getCurrentTime(),
                channel: determineChannel(),
                teamCityBuildId: determineTeamCityBuildId()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/fixture/BuildScanPerformanceTestRunner.groovy

                versionUnderTest: GradleVersion.current().getVersion(),
                vcsBranch: Git.current().branchName,
                vcsCommits: [Git.current().commitId, pluginCommitSha],
                startTime: clock.getCurrentTime(),
                channel: determineChannel(),
                teamCityBuildId: determineTeamCityBuildId()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContextTest.groovy

    import static org.slf4j.Logger.ROOT_LOGGER_NAME
    
    class OutputEventListenerBackedLoggerContextTest extends Specification {
        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
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

        }
    
        private TransientConfigurationResults deserialize(Decoder decoder, ResolvedGraphResults graphResults, SelectedArtifactResults artifactResults, BuildOperationExecutor buildOperationProcessor) {
            Timer clock = Time.startTimer();
            Map<Long, DefaultResolvedDependency> allDependencies = new HashMap<>();
            Map<Dependency, DependencyGraphNodeResult> firstLevelDependencies = new LinkedHashMap<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerDefaultConfigurationTest.groovy

        }
    
        String getErr() {
            outputs.stdErr
        }
    
        def context
    
        Logger logger() {
            if (context == null) {
                context = new OutputEventListenerBackedLoggerContext(Time.clock())
            }
            context.getLogger("foo")
        }
    
        def "messages logged below LIFECYCLE level are ignored"() {
            when:
            logger().trace("debug")
            logger().debug("debug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/Result.java

        }
    
        public static Result success(Duration duration, Execution outcome) {
            return new Result(duration, Try.successful(outcome));
        }
    
        /**
         * The elapsed wall clock time of executing the actual work, i.e. the time it took to execute the
         * {@link UnitOfWork#execute(UnitOfWork.ExecutionRequest)} method.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/aes_extended_nonce.go

    package aes
    
    import (
    	"bytes"
    	"context"
    	"crypto/aes"
    	"crypto/sha256"
    	"errors"
    	"fmt"
    	"io"
    	"time"
    
    	"golang.org/x/crypto/hkdf"
    
    	"k8s.io/apiserver/pkg/storage/value"
    	"k8s.io/utils/clock"
    )
    
    const (
    	// cacheTTL is the TTL of KDF cache entries.  We assume that the value.Context.AuthenticatedData
    	// for every call is the etcd storage path of the associated resource, and use that as the primary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_manager.go

    		return "", msg, ErrImageNeverPull
    	}
    
    	backOffKey := fmt.Sprintf("%s_%s", pod.UID, container.Image)
    	if m.backOff.IsInBackOffSinceUpdate(backOffKey, m.backOff.Clock.Now()) {
    		msg := fmt.Sprintf("Back-off pulling image %q", container.Image)
    		m.logIt(ref, v1.EventTypeNormal, events.BackOffPullImage, logPrefix, msg, klog.Info)
    		return "", msg, ErrImagePullBackOff
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top