Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 496 for clocks (0.13 sec)

  1. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestExecutionBuildOperationBuildSessionScopeServices.java

    import org.gradle.internal.time.Clock;
    
    public class TestExecutionBuildOperationBuildSessionScopeServices implements ServiceRegistrationProvider {
    
        @Provides
        TestListenerBuildOperationAdapter createTestListenerBuildOperationAdapter(BuildOperationListenerManager listener, BuildOperationIdFactory buildOperationIdFactory, Clock clock) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/WorkerTestClassProcessor.java

    import org.gradle.internal.time.Clock;
    
    public class WorkerTestClassProcessor extends SuiteTestClassProcessor {
    
        public WorkerTestClassProcessor(TestClassProcessor processor, Object workerSuiteId, String workerDisplayName,
                                        Clock clock) {
            super(new WorkerTestSuiteDescriptor(workerSuiteId, workerDisplayName), processor, clock);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNgTestClassProcessorFactory.java

            this.suiteFiles = suiteFiles;
        }
    
        @Override
        public TestClassProcessor create(IdGenerator<?> idGenerator, ActorFactory actorFactory, Clock clock) {
            return new TestNGTestClassProcessor(testReportDir, options, suiteFiles, idGenerator, clock, actorFactory);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    var work workType
    
    type workType struct {
    	full  lfstack          // lock-free list of full blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between full and empty
    	empty lfstack          // lock-free list of empty blocks workbuf
    	_     cpu.CacheLinePad // prevents false-sharing between empty and nproc/nwait
    
    	wbufSpans struct {
    		lock mutex
    		// free is a list of spans dedicated to workbufs, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/AbstractCrossBuildPerformanceTestRunner.groovy

        final IntegrationTestBuildContext buildContext
        final GradleDistribution gradleDistribution
        final BuildExperimentRunner experimentRunner
        final Clock clock = Time.clock()
    
        String testClassName
        String testId
        String testGroup
        String testProject
        List<BuildExperimentSpec> specs = []
        boolean measureGarbageCollection = true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorFactory.java

            this.spec = spec;
        }
    
        @Override
        public TestClassProcessor create(IdGenerator<?> idGenerator, ActorFactory actorFactory, Clock clock) {
            return new JUnitTestClassProcessor(spec, idGenerator, actorFactory, clock);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

        private final IdGenerator<?> idGenerator;
        private final Clock clock;
        private final ActorFactory actorFactory;
        private ClassLoader applicationClassLoader;
        private Actor resultProcessorActor;
        private TestResultProcessor resultProcessor;
    
        public TestNGTestClassProcessor(File testReportDir, TestNGSpec spec, List<File> suiteFiles, IdGenerator<?> idGenerator, Clock clock, ActorFactory actorFactory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

        fun `ignores unresolved pluginsManagement blocks before plugins`() {
            val result = pluginsSchema.runChecks(
                """
                pluginManagement { }
                pluginManagement { }
                plugins { }
                """.trimIndent()
            )
    
            assertTrue(result.isEmpty())
        }
    
        @Test
        fun `reports all order violations for plugins blocks`() {
            val result = pluginsSchema.runChecks(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/kubelet/util/manager/watch_based_manager.go

    }
    
    func (i *objectCacheItem) setLastAccessTime(time time.Time) {
    	i.lock.Lock()
    	defer i.lock.Unlock()
    	i.lastAccessTime = time
    }
    
    func (i *objectCacheItem) setImmutable() {
    	i.lock.Lock()
    	defer i.lock.Unlock()
    	i.immutable = true
    }
    
    func (i *objectCacheItem) stopIfIdle(now time.Time, maxIdleTime time.Duration) bool {
    	i.lock.Lock()
    	defer i.lock.Unlock()
    	// Ensure that we don't try to stop not yet initialized reflector.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/OutputEventListenerBackedLoggerContext.java

        private final AtomicReference<OutputEventListener> outputEventListener = new AtomicReference<OutputEventListener>();
        private final Clock clock;
    
        public OutputEventListenerBackedLoggerContext(Clock clock) {
            this.clock = clock;
            applyDefaultLoggersConfig();
            reset();
        }
    
        private void applyDefaultLoggersConfig() {
            addNoOpLogger("java.lang.ProcessBuilder");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top