Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 517 for STARTED (0.11 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/FailFastTestListenerInternalTest.groovy

        FailFastTestListenerInternal unit
    
        def setup() {
            unit = new FailFastTestListenerInternal(testExecuter, delegate)
        }
    
        def "started invokes delegate"() {
            when:
            unit.started(testDescriptor, startEvent)
    
            then:
            1 * delegate.started(testDescriptor, startEvent)
        }
    
        def "output invokes delegate"() {
            when:
            unit.output(testDescriptor, event)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. pkg/kube/informerfactory/factory.go

    	// WaitForCacheSync blocks until all started informers' caches were synced
    	// or the stop channel gets closed.
    	WaitForCacheSync(stopCh <-chan struct{}) bool
    
    	// Shutdown marks a factory as shutting down. At that point no new
    	// informers can be started anymore and Start will return without
    	// doing anything.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationListenerManager.java

            @Override
            public void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent) {
                List<? extends BuildOperationListener> listeners = DefaultBuildOperationListenerManager.this.listeners;
                //noinspection ForLoopReplaceableByForEach
                for (int i = 0; i < listeners.size(); ++i) {
                    listeners.get(i).started(buildOperation, startEvent);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  4. docs/en/docs/deployment/server-workers.md

    [19515] [INFO] Booting worker with pid: 19515
    [19511] [INFO] Started server process [19511]
    [19511] [INFO] Waiting for application startup.
    [19511] [INFO] Application startup complete.
    [19513] [INFO] Started server process [19513]
    [19513] [INFO] Waiting for application startup.
    [19513] [INFO] Application startup complete.
    [19514] [INFO] Started server process [19514]
    [19514] [INFO] Waiting for application startup.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessFactory.java

    public interface WorkerProcessFactory {
        /**
         * Creates a builder for workers that will run the given action. The worker action is serialized to the worker process and executed.
         *
         * <p>The worker process is not started until {@link WorkerProcess#start()} is called.</p>
         *
         * @param workerAction The action to serialize and run in the worker process.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 15 22:51:06 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-logging/src/main/java/org/gradle/internal/logging/progress/ProgressLogger.java

         *
         * <p>This must be called before {@link #started()}.
         *
         * @param description The description.
         */
        ProgressLogger setDescription(String description);
    
        /**
         * Convenience method that sets descriptions and logs started() event.
         *
         * @param status The initial status message. Can be null or empty.
         * @return this logger instance
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PodStatusResult.yaml

        name: nameValue
        ready: true
        resources:
          claims:
          - name: nameValue
          limits:
            limitsKey: "0"
          requests:
            requestsKey: "0"
        restartCount: 5
        started: true
        state:
          running:
            startedAt: "2001-01-01T01:01:01Z"
          terminated:
            containerID: containerIDValue
            exitCode: 1
            finishedAt: "2006-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. pkg/kube/kclient/delayed.go

    	}
    	s.hm.Lock()
    	defer s.hm.Unlock()
    	s.started = stop
    }
    
    var _ Informer[controllers.Object] = &delayedClient[controllers.Object]{}
    
    func (s *delayedClient[T]) set(inf Informer[T]) {
    	if inf != nil {
    		s.inf.Swap(&inf)
    		s.hm.Lock()
    		defer s.hm.Unlock()
    		for _, h := range s.handlers {
    			inf.AddEventHandler(h)
    		}
    		s.handlers = nil
    		if s.started != nil {
    			inf.Start(s.started)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 31 02:32:59 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/doc.go

    //
    // testinggoroutine: report calls to (*testing.T).Fatal from goroutines started by a test
    //
    // Functions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and
    // Skip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.
    // This checker detects calls to these functions that occur within a goroutine
    // started by the test. For example:
    //
    //	func TestFoo(t *testing.T) {
    //	    go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 853 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.java

                    dest.add(tracker);
                }
            }
        }
    
        @Override
        public void started(BuildOperationDescriptor buildOperation, OperationStartEvent startEvent) {
            for (BuildOperationTracker tracker : trackers) {
                tracker.started(buildOperation, startEvent);
            }
            for (Mapper mapper : mappers) {
                Operation operation = mapper.accept(buildOperation);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top