Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,334 for swapped (0.14 sec)

  1. src/runtime/lockrank_on.go

    //
    //go:nosplit
    func worldStarted() {
    	if stopped := worldIsStopped.Add(-1); stopped != 0 {
    		systemstack(func() {
    			print("world stop count=", stopped, "\n")
    			throw("released non-stopped world stop")
    		})
    	}
    }
    
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    func checkWorldStopped() bool {
    	stopped := worldIsStopped.Load()
    	if stopped > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/DaemonStopState.java

    package org.gradle.launcher.daemon.server;
    
    /**
     * Indicates the state of the daemon when it stops doing work.
     */
    public enum DaemonStopState {
        /**
         * Daemon was stopped cleanly and all work stopped.
         */
        Clean,
        /**
         * Daemon could not be stopped cleanly and some work may still be running.
         */
        Forced
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:45:11 UTC 2024
    - 953 bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/DaemonConnectionBackedEventConsumer.java

            }
    
            private boolean moreMessagesToSend() {
                return ableToSend && !(stopped && queue.isEmpty());
            }
    
            private Object getNextEvent() {
                try {
                    return queue.poll(10, TimeUnit.MILLISECONDS);
                } catch (InterruptedException e) {
                    stopped = true;
                    return null;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestProgressLoggingIntegrationTest.groovy

            }
        }
    
        def "captures skipped test progress logging events" () {
            withSkippedTestClasses(10)
    
            when:
            succeeds("test")
    
            then:
            events.statusLogged("0 tests completed")
            events.statusLogged("1 test completed, 1 skipped")
            (2..10).each { count ->
                assert events.statusLogged("${count} tests completed, ${count} skipped")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
            logging.events "started", "skipped"
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows stack trace formats to be added as enum values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            then:
            executedAndNotSkipped(project.customTask)
    
            when:
            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            when:
            ignoredResource.changeContents()
            succeeds project.customTask
            then:
            skipped(project.customTask)
    
            when:
            notIgnoredResource.changeContents()
            succeeds project.customTask
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/outputorigin/BuildCacheOutputOriginIntegrationTest.groovy

            when:
            succeeds "clean", "write"
    
            then:
            skipped ":write"
            with(origin(":write")) {
                buildInvocationId == thirdBuildId
                buildCacheKey == thirdBuildCacheKey
            }
    
            when:
            succeeds  "write"
    
            then:
            skipped ":write"
            originBuildInvocationId(":write") == thirdBuildId
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 14:10:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/watch_based_manager.go

    	// to be retried.
    	if !i.stopped && i.store.hasSynced() && now.After(i.lastAccessTime.Add(maxIdleTime)) {
    		return i.stopThreadUnsafe()
    	}
    	return false
    }
    
    func (i *objectCacheItem) restartReflectorIfNeeded() {
    	i.lock.Lock()
    	defer i.lock.Unlock()
    	if i.immutable || !i.stopped {
    		return
    	}
    	i.stopCh = make(chan struct{})
    	i.stopped = false
    	go i.startReflector()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/TaskUpToDateIntegrationTest.groovy

            executedAndNotSkipped ":customTask"
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output1"
            then:
            skipped ":customTask"
    
            when:
            succeeds ":customTask", "-PoutputDir=build/output2"
            then:
            skipped ":customTask"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/3073")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        }
    
        private static InputFileChanges caching(InputFileChanges wrapped) {
            CachingChangeContainer cachingChangeContainer = new CachingChangeContainer(MAX_OUT_OF_DATE_MESSAGES, wrapped);
            return new InputFileChangesWrapper(wrapped, cachingChangeContainer);
        }
    
        private static ChangeContainer errorHandling(Describable executable, ChangeContainer wrapped) {
            return new ErrorHandlingChangeContainer(executable, wrapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top