Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,166 for clock5 (0.46 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildResultLogger.java

        private final DurationFormatter durationFormatter;
        private final WorkValidationWarningReporter workValidationWarningReporter;
        private final Clock clock;
    
        public BuildResultLogger(
            StyledTextOutputFactory textOutputFactory,
            BuildStartedTime buildStartedTime,
            Clock clock,
            DurationFormatter durationFormatter,
            WorkValidationWarningReporter workValidationWarningReporter
        ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 08 10:17:53 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go

    }
    
    type Timeval struct {
    	Sec  int64
    	Usec int64
    }
    
    type timeval_zos struct { //correct (with padding and all)
    	Sec  int64
    	_    [4]byte // pad
    	Usec int32
    }
    
    type Tms struct { //clock_t is 4-byte unsigned int in zos
    	Utime  uint32
    	Stime  uint32
    	Cutime uint32
    	Cstime uint32
    }
    
    type Time_t int64
    
    type Utimbuf struct {
    	Actime  int64
    	Modtime int64
    }
    
    type Utsname struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLoggerFactory.java

            this.styledTextOutputFactory = styledTextOutputFactory;
            this.workValidationWarningReporter = workValidationWarningReporter;
            this.clock = clock;
            this.gradleEnterprisePluginManager = gradleEnterprisePluginManager;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/ThrottlingOutputEventListener.java

        }
    
        ThrottlingOutputEventListener(OutputEventListener listener, int throttleMs, ScheduledExecutorService executor, Clock clock) {
            this.throttleMs = throttleMs;
            this.listener = listener;
            this.executor = executor;
            this.clock = clock;
            scheduleUpdateNow();
        }
    
        private void scheduleUpdateNow() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_received_time.go

    	"net/http"
    
    	"k8s.io/apiserver/pkg/endpoints/request"
    	"k8s.io/utils/clock"
    )
    
    // WithRequestReceivedTimestamp attaches the ReceivedTimestamp (the time the request reached
    // the apiserver) to the context.
    func WithRequestReceivedTimestamp(handler http.Handler) http.Handler {
    	return withRequestReceivedTimestampWithClock(handler, clock.RealClock{})
    }
    
    // The clock is passed as a parameter, handy for unit testing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/ProfileEventAdapter.java

        public ProfileEventAdapter(BuildProfile buildProfile, BuildStartedTime buildStartedTime, Clock clock) {
            this.buildProfile = buildProfile;
            this.buildStartedTime = buildStartedTime;
            this.clock = clock;
        }
    
        // BuildListener
        @Override
        public void beforeSettings(Settings settings) {
            long now = clock.getCurrentTime();
            buildProfile.setBuildStarted(now);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/healthz.go

    func delayedHealthCheck(check healthz.HealthChecker, clock clock.Clock, delay time.Duration) healthz.HealthChecker {
    	return delayedLivezCheck{
    		check,
    		clock.Now().Add(delay),
    		clock,
    	}
    }
    
    type delayedLivezCheck struct {
    	check      healthz.HealthChecker
    	startCheck time.Time
    	clock      clock.Clock
    }
    
    func (c delayedLivezCheck) Name() string {
    	return c.check.Name()
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

    import java.util.concurrent.CancellationException;
    
    import static org.gradle.internal.FileUtils.hasExtension;
    
    public class DistributionFactory {
        private final Clock clock;
    
        public DistributionFactory(Clock clock) {
            this.clock = clock;
        }
    
        /**
         * Returns the default distribution to use for the specified project.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. pkg/kubelet/token/token_manager_test.go

    		},
    	}
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			clock := testingclock.NewFakeClock(time.Time{}.Add(24 * time.Hour))
    			mgr := NewManager(nil)
    			mgr.clock = clock
    
    			mgr.set("key", &authenticationv1.TokenRequest{
    				Status: authenticationv1.TokenRequestStatus{
    					ExpirationTimestamp: metav1.Time{Time: mgr.clock.Now().Add(c.relativeExp)},
    				},
    			})
    			mgr.cleanup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/DefaultGradleEnterprisePluginBuildState.java

        public DefaultGradleEnterprisePluginBuildState(
            Clock clock,
            BuildStartedTime buildStartedTime,
            BuildInvocationScopeId buildInvocationId,
            WorkspaceScopeId workspaceId,
            UserScopeId userId,
            StartParameter startParameter,
            ServiceRegistry serviceRegistry
        ) {
            this.clock = clock;
            this.buildStartedTime = buildStartedTime;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 10:59:09 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top