Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 898 for Forever (0.11 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/poll.go

    // 'condition' will always be invoked at least once.
    //
    // Some intervals may be missed if the condition takes too long or the time
    // window is too short.
    //
    // If you want to Poll something forever, see PollInfinite.
    //
    // Deprecated: This method does not return errors from context, use PollUntilContextTimeout.
    // Note that the new method will no longer return ErrWaitTimeout and instead return errors
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServiceClientImpl.java

            this.unknownAddress = new NbtAddress(this.unknownName, 0, false, NbtAddress.B_NODE);
            this.addressCache.put(this.unknownName, new CacheEntry(this.unknownName, this.unknownAddress, SmbConstants.FOREVER));
    
            /*
             * Determine the InetAddress of the local interface
             * if one was not specified.
             */
            InetAddress localInetAddress = tc.getConfig().getNetbiosLocalAddress();
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  4. pkg/ledger/smt.go

    	atomicUpdate bool
    }
    
    // this is the closest time.Duration comes to Forever, with a duration of ~145 years
    // we can'tree use int64 max because the duration gets added to Now(), and the ints
    // rollover, causing an immediate expiration (ironic, eh?)
    const forever time.Duration = 1<<(63-1) - 1
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure.sh

          echo "Bailing out." >&2
          exit 2
          ;;
      esac
    }
    
    # Retries a command forever with a delay between retries.
    # Args:
    #  $1    : delay between retries, in seconds.
    #  $2... : the command to run.
    function retry-forever {
      local -r delay="$1"
      shift 1
    
      until "$@"; do
        echo "== $* failed, retrying after ${delay}s"
        sleep "${delay}"
      done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  6. src/context/x_test.go

    	})
    	if !ok {
    		t.Fatal("DeadlineExceeded does not support Timeout interface")
    	}
    	if !i.Timeout() {
    		t.Fatal("wrong value for timeout")
    	}
    }
    func TestCause(t *testing.T) {
    	var (
    		forever       = 1e6 * time.Second
    		parentCause   = fmt.Errorf("parentCause")
    		childCause    = fmt.Errorf("childCause")
    		tooSlow       = fmt.Errorf("tooSlow")
    		finishedEarly = fmt.Errorf("finishedEarly")
    	)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  7. src/net/dial_test.go

    			}
    
    			primaries := makeAddrs(tt.primaries, "80")
    			fallbacks := makeAddrs(tt.fallbacks, "80")
    			d := Dialer{
    				FallbackDelay: fallbackDelay,
    			}
    			const forever = 60 * time.Minute
    			if tt.expectElapsed == instant {
    				d.FallbackDelay = forever
    			}
    			startTime := time.Now()
    			sd := &sysDialer{
    				Dialer:          d,
    				network:         "tcp",
    				address:         "?",
    				testHookDialTCP: dialTCP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            1 * connection.markSuspect()
            1 * connection.dispatch({ it instanceof CloseInput })
            1 * connection.stop()
            0 * connection._
        }
    
        def "does not loop forever finding usable daemons"() {
            given:
            connector.connect(compatibilitySpec) >> connection
            connector.startDaemon(compatibilitySpec) >> connection
            connection.daemon >> Stub(DaemonConnectDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

          taskRunner.condition.signal()
        }
    
        /**
         * Wait a duration in nanoseconds. Unlike [java.lang.Object.wait] this interprets 0 as
         * "don't wait" instead of "wait forever".
         */
        @Throws(InterruptedException::class)
        @Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN")
        override fun coordinatorWait(
          taskRunner: TaskRunner,
          nanos: Long,
        ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/sds/sdsservice.go

    	// configured, in which case this will fail; if it becomes noisy we should disable the entire SDS
    	// server in these cases.
    	go func() {
    		// TODO: do we need max timeout for retry, seems meaningless to retry forever if it never succeed
    		b := backoff.NewExponentialBackOff(backoff.DefaultOption())
    		// context for both timeout and channel, whichever stops first, the context will be done
    		ctx, cancel := context.WithCancel(context.Background())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top