Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,113 for Forever (0.13 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. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    )
    
    // For any test of the style:
    //
    //	...
    //	<- time.After(timeout):
    //	   t.Errorf("Timed out")
    //
    // The value for timeout should effectively be "forever." Obviously we don't want our tests to truly lock up forever, but 30s
    // is long enough that it is effectively forever for the things that can slow down a run on a heavily contended machine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_import_cycle.txt

    # mod_import_cycle covers this error in module mode.
    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    go list -e -f '{{.Error}}' selfimport # Don't hang forever
    stdout -count=1 'import cycle not allowed'
    
    -- selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 314 bytes
    - Viewed (0)
  4. test/fixedbugs/issue8076.go

    // compile
    
    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 8076. nilwalkfwd walked forward forever
    // on the instruction loop following the dereference.
    
    package main
    
    func main() {
    	_ = *(*int)(nil)
    L:
    	_ = 0
    	goto L
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 342 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/import_cycle.txt

    env GO111MODULE=off
    
    ! go build selfimport
    stderr -count=1 'import cycle not allowed'
    
    # 'go list' shouldn't hang forever.
    go list -e -json selfimport
    
    -- $GOPATH/src/selfimport/selfimport.go --
    package selfimport
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 28 19:09:53 UTC 2020
    - 235 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testcarchive/testdata/libgo8/a.go

    // license that can be found in the LICENSE file.
    
    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 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 529 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. test/sieve.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test basic concurrency: the classic prime sieve.
    // Do not run - loops forever.
    
    package main
    
    // Send the sequence 2, 3, 4, ... to channel 'ch'.
    func Generate(ch chan<- int) {
    	for i := 2; ; i++ {
    		ch <- i // Send 'i' to channel 'ch'.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1K bytes
    - Viewed (0)
  10. 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)
Back to top