Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,131 for STARTED (0.16 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/DefaultCancellableOperationManagerTest.groovy

            when:
            start {
                monitor.monitorInput {
                    instant.started
                    it.addCallback {
                        instant.cancelled
                    }
                    thread.blockUntil.cancelled
                }
                instant.finished
            }
    
            thread.blockUntil.started
            writeEnd.close()
            thread.blockUntil.finished
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:46 UTC 2021
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/libgo8/a.go

    package main
    
    import "C"
    
    import (
    	"os"
    	"runtime"
    	"sync/atomic"
    )
    
    var started int32
    
    // Start a goroutine that loops forever.
    func init() {
    	runtime.GOMAXPROCS(1)
    	go func() {
    		for {
    			atomic.StoreInt32(&started, 1)
    		}
    	}()
    }
    
    //export GoFunction8
    func GoFunction8() {
    	for atomic.LoadInt32(&started) == 0 {
    		runtime.Gosched()
    	}
    	os.Exit(0)
    }
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 529 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

     * <h3>State flows</h3>
     *
     * <ul>
     *   <li>INIT -&gt; STARTED -&gt; [SUCCEEDED|FAILED|ABORTED|DETACHED]</li>
     *   <li>INIT -&gt; FAILED</li>
     *   <li>INIT -&gt; STARTED -&gt; DETACHED -&gt; ABORTED</li>
     * </ul>
     *
     * State is controlled on all control methods:
     * <ul>
     * <li>{@link #start()} allowed when state is INIT</li>
     * <li>{@link #abort()} allowed when state is STARTED or DETACHED</li>
     * </ul>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/audit/union_test.go

    	return "cannotMultipleRunBackend"
    }
    
    func TestUnionRun(t *testing.T) {
    	backends := []Backend{
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    		&cannotMultipleRunBackend{started: make(chan struct{})},
    	}
    
    	b := Union(backends...)
    
    	if err := b.Run(make(chan struct{})); err != nil {
    		t.Errorf("union backend run: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 20 09:51:25 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationBridge.java

                    return;
                }
    
                active.put(id, "");
    
                Started notification = new Started(startEvent.getStartTime(), id, parentId, buildOperation.getDetails());
    
                try {
                    notificationListener.started(notification);
                } catch (Throwable e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapterTest.groovy

            BuildOperationDescriptor generatedDescriptor;
    
            when:
            adapter.started(testDescriptorInternal, testStartEvent)
    
            then:
            1 * buildOperationIdFactory.nextId() >> 1
            1 * clock.currentTime >> 0
            1 * listener.started(_, _) >> {
                generatedDescriptor = it[0]
                assert generatedDescriptor.details.testDescriptor == testDescriptorInternal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/containers/GradleInContainer.groovy

            this
        }
    
        @PackageScope
        GradleExecResult execute(String... command) {
            if (!started) {
                container.withCommand("tail", "-f", "/dev/null")
                startContainer()
            }
            return container.execute(command)
        }
    
        void startContainer() {
            started = true
            container.start()
            monitor = new Thread(new Runnable() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

                processor.started(suiteDescriptor, suiteStartEvent)
                processor.started(testDescriptor, testStartEvent)
                processor.completed("test", finishEvent)
                processor.completed("suite", finishEvent)
    
                processor.started(suiteDescriptor, suiteStartEvent)
                processor.completed("suite", finishEvent)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. src/testing/sub_test.go

    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    			{typ: add1, running: 3, waiting: 3, started: false},
    			{typ: done, running: 3, waiting: 2, started: true},
    			{typ: done, running: 3, waiting: 1, started: true},
    			{typ: done, running: 3, waiting: 0, started: true},
    			{typ: done, running: 2, waiting: 0, started: false},
    			{typ: done, running: 1, waiting: 0, started: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

        def "allows events to be added as enum values"() {
            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
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top