Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 732 for clocks (0.08 sec)

  1. src/runtime/metrics/doc.go

    	/gc/heap/tiny/allocs:objects
    		Count of small allocations that are packed together into blocks.
    		These allocations are counted separately from other allocations
    		because each individual allocation is not tracked by the
    		runtime, only their block. Each block is already accounted for
    		in allocs-by-size and frees-by-size.
    
    	/gc/limiter/last-enabled:gc-cycle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/test/groovy/org/gradle/internal/scan/config/fixtures/ApplyDevelocityPluginFixtureTest.groovy

            file.text =="""plugins {
                |    id("com.gradle.develocity") version("${VERSION}")
                |}
                |
                |includeBuild '../lib'""".stripMargin()
        }
    
        def "plugin management block blocks"() {
            given:
            File file = File.createTempFile("test_script", ".tmp")
            file.write("""pluginManagement {
                |    repositories {
                |        gradlePluginPortal()
                |    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ManagedExecutor.java

    public interface ManagedExecutor extends AsyncStoppable, ExecutorService {
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed.
         */
        @Override
        void stop();
    
        /**
         * Stops accepting new jobs and blocks until all currently executing jobs have been completed. Once the given
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. pkg/controller/disruption/disruption.go

    				DelayingQueue: workqueue.NewTypedDelayingQueueWithConfig(workqueue.TypedDelayingQueueConfig[string]{
    					Clock: clock,
    					Name:  "disruption",
    				}),
    			},
    		),
    		recheckQueue: workqueue.NewTypedDelayingQueueWithConfig(workqueue.TypedDelayingQueueConfig[string]{
    			Clock: clock,
    			Name:  "disruption_recheck",
    		}),
    		stalePodDisruptionQueue: workqueue.NewTypedRateLimitingQueueWithConfig(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  5. src/runtime/coro.go

    	exit := gp.coroexit
    	gp.coroexit = false
    	mp := gp.m
    
    	// Track and validate thread-lock interactions.
    	//
    	// The rules with thread-lock interactions are simple. When a coro goroutine is switched to,
    	// the same thread must be used, and the locked state must match with the thread-lock state of
    	// the goroutine which called newcoro. Thread-lock state consists of the thread and the number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/liveness/plive.go

    			}
    			c := b.Preds[0].Block()
    			d := b.Preds[1].Block()
    
    			// Find their common predecessor block (the one that branches based on wb on/off).
    			// It might be a diamond pattern, or one of the blocks in the diamond pattern might
    			// be missing.
    			var decisionBlock *ssa.Block
    			if len(c.Preds) == 1 && c.Preds[0].Block() == d {
    				decisionBlock = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. src/runtime/runtime-gdb_test.go

    	// Extract named BEGIN...END blocks from output
    	partRe := regexp.MustCompile(`(?ms)^BEGIN ([^\n]*)\n(.*?)\nEND`)
    	blocks := map[string]string{}
    	for _, subs := range partRe.FindAllSubmatch(got, -1) {
    		blocks[string(subs[1])] = string(subs[2])
    	}
    
    	infoGoroutinesRe := regexp.MustCompile(`\*\s+\d+\s+running\s+`)
    	if bl := blocks["info goroutines"]; !infoGoroutinesRe.MatchString(bl) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/time/BuildScanClock.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A view of the Gradle runtime's clock used by build scans.
     *
     * The provider is _required_ to provide monotonic timestamps.
     *
     * @since 4.2
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface BuildScanClock {
    
        /**
         * The current wall clock time.
         */
        long getCurrentTime();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        private final IntegrationTestBuildContext buildContext
        private final DataReporter<CrossVersionPerformanceResults> reporter
        private final ReleasedVersionDistributions releases
        private final Clock clock = Time.clock()
    
        final BuildExperimentRunner experimentRunner
    
        GradleDistribution current
    
        String testProject
        File workingDir
        boolean useDaemon = true
        boolean useToolingApi = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

        private ListenerBroadcast<StandardOutputListener> userStderrListeners;
    
        public OutputEventRenderer(final Clock clock, GlobalUserInputReceiver userInput) {
            this.clock = clock;
            this.userInput = userInput;
        }
    
        @Override
        public Snapshot snapshot() {
            synchronized (lock) {
                // Currently only snapshot the console output listener. Should snapshot all output listeners, and cleanup in restore()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top