Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 436 for STARTED (0.11 sec)

  1. build-logic/cleanup/src/test/groovy/gradlebuild/cleanup/services/LeakingProcessKillPatternTest.groovy

     * limitations under the License.
     */
    
    package gradlebuild.cleanup.services
    
    import spock.lang.Specification
    
    class LeakingProcessKillPatternTest extends Specification {
    
        def "matches worker process started in test on Windows"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:00:39 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/controllermanager.go

    		if err != nil {
    			return err
    		}
    		if check != nil {
    			// HealthChecker should be present when controller has started
    			controllerChecks = append(controllerChecks, check)
    		}
    	}
    
    	// Initialize the cloud provider with a reference to the clientBuilder only after token controller
    	// has started in case the cloud provider uses the client builder.
    	if controllerCtx.Cloud != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DistributionFactoryTest.groovy

            1 * buildProgressListener.onEvent({it instanceof StartEvent})
            1 * loggerOne.setDescription("Download ${zipFile.toURI()}")
            1 * loggerOne.started()
    
            then:
            1 * buildProgressListener.onEvent({ it instanceof StatusEvent})
    
            then:
            1 * loggerOne.completed()
            1 * buildProgressListener.onEvent({it instanceof FinishEvent})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. src/net/http/httptest/server.go

    	// on the server. It must be set between calling
    	// NewUnstartedServer and calling Server.StartTLS.
    	EnableHTTP2 bool
    
    	// TLS is the optional TLS configuration, populated with a new config
    	// after TLS is started. If set on an unstarted server before StartTLS
    	// is called, existing fields are copied into the new config.
    	TLS *tls.Config
    
    	// Config may be changed after calling NewUnstartedServer and
    	// before Start or StartTLS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    					logger.Info("attacherDetacher.DetachVolume started", "node", klog.KRef("", string(attachedVolume.NodeName)), "volumeName", attachedVolume.VolumeName)
    				} else { // force detach
    					if forceDetatchTimeoutExpired {
    						metrics.RecordForcedDetachMetric(metrics.ForceDetachReasonTimeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/work/DefaultAsyncWorkTrackerTest.groovy

                    workerThread {
                        asyncWorkTracker.registerWork(operation, blockingWorkCompletion("allStarted"))
                        instant."worker${i}Started"
                    }
                }
                5.times { i ->
                    thread.blockUntil."worker${i}Started"
                }
                workerThread {
                    instant.waitStarted
                    asyncWorkTracker.waitForCompletion(operation, RELEASE_PROJECT_LOCKS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 06 04:53:10 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

      }
    
      public void testServiceStartupTimes_selfStartingServices() {
        // This tests to ensure that:
        // 1. service times are accurate when the service is started by the manager
        // 2. service times are recorded when the service is not started by the manager (but they may
        // not be accurate).
        final Service b =
            new NoOpDelayedService(353) {
              @Override
              protected void doStart() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  8. docs/pl/docs/tutorial/first-steps.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    <span style="color: green;">INFO</span>:     Waiting for application startup.
    <span style="color: green;">INFO</span>:     Application startup complete.
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/runtime/stack_test.go

    			if !started.Load() {
    				panic("finalizer did not start")
    			} else {
    				panic(fmt.Sprintf("finalizer started %s ago (%s after registration) and ran %d iterations, but did not return", time.Since(finalizerStart), finalizerStart.Sub(setFinalizerTime), progress.Load()))
    			}
    		})
    		defer timer.Stop()
    	}
    
    	GC()
    	wg.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

            }
            return this;
        }
    
        private void maybeStartText() throws IOException {
            if (context == Context.Outside) {
                throw new IllegalStateException("Cannot write text, as there are no started elements.");
            }
            if (context == Context.StartTag) {
                writeRaw(">");
            }
            context = Context.Text;
        }
    
        private void maybeFinishStartTag() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
Back to top