Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 381 for crBlock (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/SynchronizedLogging.java

    import org.gradle.internal.time.Clock;
    
    /**
     * Provides logging services per thread.
     */
    public class SynchronizedLogging implements LoggingProvider {
        private final ThreadLocal<ThreadLoggingServices> services = new ThreadLocal<ThreadLoggingServices>();
        private final Clock clock;
        private final BuildOperationIdFactory buildOperationIdFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionCheck.java

        private final Clock clock;
        private final GarbageCollectorMXBean garbageCollectorMXBean;
    
        private final String heapMemoryPool;
        private final SlidingWindow<GarbageCollectionEvent> heapEvents;
    
        private final String nonHeapMemoryPool;
        private final SlidingWindow<GarbageCollectionEvent> nonHeapEvents;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/runtime/race/testdata/rwmutex_test.go

    	// scheduled in, two will be on the same side of the write
    	// lock above.
    	go func() {
    		mu.RLock()
    		y = x + 1
    		mu.RUnlock()
    		ch <- true
    	}()
    	go func() {
    		mu.RLock()
    		y = x + 2
    		mu.RUnlock()
    		ch <- true
    	}()
    	go func() {
    		mu.RLock()
    		y = x + 3
    		mu.RUnlock()
    		ch <- true
    	}()
    	<-ch
    	<-ch
    	<-ch
    	<-ch
    	_ = y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/AbstractTrackedResourceLockTest.groovy

        def "tracks the lock in the current resource lock state and calls provided actions"() {
            given:
            _ * coordinationService.current >> resourceLockState
    
            when:
            lock.tryLock()
    
            then:
            1 * container.lockAcquired(lock)
            1 * resourceLockState.registerLocked(lock)
    
            when:
            lock.unlock()
    
            then:
            1 * container.lockReleased(lock)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/poll/export_test.go

    	return mu.incref()
    }
    
    func (mu *XFDMutex) IncrefAndClose() bool {
    	return mu.increfAndClose()
    }
    
    func (mu *XFDMutex) Decref() bool {
    	return mu.decref()
    }
    
    func (mu *XFDMutex) RWLock(read bool) bool {
    	return mu.rwlock(read)
    }
    
    func (mu *XFDMutex) RWUnlock(read bool) bool {
    	return mu.rwunlock(read)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 714 bytes
    - Viewed (0)
  10. pkg/kubelet/util/node_startup_latency_tracker.go

    	firstNodeReadyTime           time.Time
    
    	// For testability
    	clock clock.Clock
    }
    
    func NewNodeStartupLatencyTracker() NodeStartupLatencyTracker {
    	bootTime, err := GetBootTime()
    	if err != nil {
    		bootTime = time.Time{}
    	}
    	return &basicNodeStartupLatencyTracker{
    		bootTime:         bootTime,
    		kubeletStartTime: time.Now(),
    		clock:            clock.RealClock{},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top