Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 393 for immediatetly (0.18 sec)

  1. pkg/proxy/ipvs/graceful_termination_test.go

    		rs           *utilipvs.RealServer
    		existingIPVS *utilipvstest.FakeIPVS
    		expectedIPVS *utilipvstest.FakeIPVS
    		err          error
    	}{
    		{
    			name: "graceful delete, no connections results in deleting the real server immediatetly",
    			vs: &utilipvs.VirtualServer{
    				Address:  netutils.ParseIPSloppy("1.1.1.1"),
    				Protocol: "tcp",
    				Port:     uint16(80),
    			},
    			rs: &utilipvs.RealServer{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/EventListener.kt

       */
      open fun secureConnectStart(call: Call) {
      }
    
      /**
       * Invoked immediately after a TLS connection was attempted.
       *
       * This method is invoked after [secureConnectStart].
       */
      open fun secureConnectEnd(
        call: Call,
        handshake: Handshake?,
      ) {
      }
    
      /**
       * Invoked immediately after a socket connection was attempted.
       *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/RateLimiter.java

       *     arbitrary past or present time
       */
      abstract long queryEarliestAvailable(long nowMicros);
    
      /**
       * Reserves the requested number of permits and returns the time that those permits can be used
       * (with one caveat).
       *
       * @return the time that the permits may be used, or, if the permits may be used immediately, an
       *     arbitrary past or present time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        def "requestForcefulStop stops immediately when idle"() {
            expect:
            notStopped
    
            when:
            coordinator.requestForcefulStop("stop")
    
            then:
            coordinator.willRefuseNewCommands
            stopped
            0 * _._
        }
    
        def "requestForcefulStop causes command to be abandoned immediately"() {
            def command = Mock(Runnable)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/accesslogs_test.go

    		}
    		// For positive test, we use the same ID and repeatedly send requests and check the count
    		// Retry a bit to get the logs. There is some delay before they are output(MeshConfig will not take effect immediately),
    		// so they may not be immediately ready. If not ready, we retry sending a call again.
    		err := retry.UntilSuccess(func() error {
    			if hasTargetRef {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         * is executed immediately. Otherwise, the action is executed when the root project becomes available.
         *
         * @param action The action to execute.
         */
        void rootProject(Action<? super Project> action);
    
        /**
         * Adds an action to execute against all projects of this build.
         *
         * The action is executed immediately against all projects which are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/RateLimiter.java

       *     arbitrary past or present time
       */
      abstract long queryEarliestAvailable(long nowMicros);
    
      /**
       * Reserves the requested number of permits and returns the time that those permits can be used
       * (with one caveat).
       *
       * @return the time that the permits may be used, or, if the permits may be used immediately, an
       *     arbitrary past or present time
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    +
    1. Total tasks present when each task is created or not.
    - `Created immediately` represents tasks created using the eager task APIs.
    - `Created during configuration` represents tasks created using the configuration avoidance APIs, but were realized explicitly (via `TaskProvider#get()`) or implicitly using the eager task query APIs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/internal/cache2/Relay.kt

         *
         * ## The file
         *
         * In this case we copy bytes from the file to the [sink].
         *
         * ## The buffer
         *
         * In this case the bytes are immediately copied into [sink] and the number of bytes copied is
         * returned.
         *
         * If upstream would be selected but another thread is already reading upstream this will
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/nettest/conntest.go

    	if _, err := c1.Write(make([]byte, 8)); err != nil {
    		t.Errorf("unexpected c1.Write error: %v", err)
    	}
    }
    
    // testRacyRead tests that it is safe to mutate the input Read buffer
    // immediately after cancelation has occurred.
    func testRacyRead(t *testing.T, c1, c2 net.Conn) {
    	go chunkedCopy(c2, rand.New(rand.NewSource(0)))
    
    	var wg sync.WaitGroup
    	defer wg.Wait()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top