Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,291 for Forever (0.7 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCachePolicySpec.groovy

            assert !thisBuild.mustCheck
            assert thisBuild.keepFor == Duration.ofMillis(FOREVER)
    
            def expiry1 = cachePolicy.moduleExpiry(id, module, Duration.ofMillis(2 * DAY))
            assert !expiry1.mustCheck
            assert expiry1.keepFor == Duration.ofMillis(FOREVER)
    
            def expiry2 = cachePolicy.moduleExpiry(id, module, Duration.ofMillis(FOREVER))
            assert !expiry2.mustCheck
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 22:04:14 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  2. src/net/http/cgi/cgi_main.go

    			return
    		}
    		if eb, ok := req.Form["exact-body"]; ok {
    			io.WriteString(rw, eb[0])
    			return
    		}
    		if req.FormValue("write-forever") == "1" {
    			io.Copy(rw, neverEnding('a'))
    			for {
    				time.Sleep(5 * time.Second) // hang forever, until killed
    			}
    		}
    		fmt.Fprintf(rw, "test=Hello CGI-in-CGI\n")
    		for k, vv := range req.Form {
    			for _, v := range vv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/HasConvention.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    /**
     * Demarcates objects that expose a convention.
     *
     * Convention objects aren't going to be around forever, so this is a temporary interface.
     *
     * @deprecated Use extensions instead. This interface is scheduled for removal in Gradle 9.
     * @see org.gradle.api.plugins.ExtensionAware
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java

                  @Override
                  public Integer call() throws Exception {
                    enterLatch.countDown();
                    try {
                      new CountDownLatch(1).await(); // wait forever
                      throw new AssertionError();
                    } catch (InterruptedException e) {
                      interruptedExceptionThrown.set(true);
                      throw e;
                    } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/TrustedListenableFutureTaskTest.java

                  @Override
                  public Integer call() throws Exception {
                    enterLatch.countDown();
                    try {
                      new CountDownLatch(1).await(); // wait forever
                      throw new AssertionError();
                    } catch (InterruptedException e) {
                      interruptedExceptionThrown.set(true);
                      throw e;
                    } finally {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 13 14:28:25 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/streams/ForwardStdinStreamsHandler.java

                This won't automatically stop when the process is over. Therefore, if input is not closed then this thread
                will run forever. It would be better to ensure that this thread stops when the process does.
             */
            InputStream instr = new DisconnectableInputStream(input);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 16:06:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/rds_test.go

    		},
    		{
    			// Even if we get a bad route, we should still send Envoy an empty response, rather than
    			// ignore it. If we ignore the route, the listeners can get stuck waiting forever.
    			"sidecar_badroute",
    			sidecarID(app3Ip, "app3"),
    			[]string{"ht&p"},
    		},
    	}
    
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/GradleModuleMetadataCompatibilityConverter.java

            // This code path will always be a no-op following the changes in DefaultImmutableAttributesFactory
            // However this code will have to remain forever while the other one should be removed at some point (Gradle 7.0?)
            for (MutableComponentVariant variant : metaDataFromResource.getMutableVariants()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. src/runtime/tracetype.go

    type traceTypeTable struct {
    	tab traceMap
    }
    
    // put returns a unique id for the type typ and caches it in the table,
    // if it's seeing it for the first time.
    //
    // N.B. typ must be kept alive forever for this to work correctly.
    func (t *traceTypeTable) put(typ *abi.Type) uint64 {
    	if typ == nil {
    		return 0
    	}
    	// Insert the pointer to the type itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/kubelet/winstats/perfcounter_nodestats.go

    	networkAdapterCounter, err := newNetworkCounters()
    	if err != nil {
    		return err
    	}
    
    	go wait.Forever(func() {
    		p.collectMetricsData(cpuCounter, memWorkingSetCounter, memCommittedBytesCounter, networkAdapterCounter)
    	}, perfCounterUpdatePeriod)
    
    	// Cache the CPU usage every defaultCachePeriod
    	go wait.Forever(func() {
    		newValue := p.nodeMetrics.cpuUsageCoreNanoSeconds
    		p.mu.Lock()
    		defer p.mu.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
Back to top