Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 393 for immediatetly (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

          readyQueues.add(queue)
        }
      }
    
      /**
       * Returns an immediately-executable task for the calling thread to execute, sleeping as necessary
       * until one is ready. If there are no ready queues, or if other threads have everything under
       * control this will return null. If there is more than a single task ready to execute immediately
       * this will start another thread to handle that work.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    // Nil timer means that add will not block (if it can't send event immediately, it will break the watcher)
    //
    // Note that bookmark events are never added via the add method only via the nonblockingAdd.
    // Changing this behaviour will require moving the markBookmarkAfterRvAsReceived method
    func (c *cacheWatcher) add(event *watchCacheEvent, timer *time.Timer) bool {
    	// Try to send the event immediately, without blocking.
    	if c.nonblockingAdd(event) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    // context is not cancelled first. The returned error will be from ctx.Err(), the condition's
    // err return value, or nil. If invoking condition takes longer than interval the next condition
    // will be invoked immediately. When using very short intervals, condition may be invoked multiple
    // times before a context cancellation is detected. If immediate is true, condition will be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        // Manually write an invalid masked close frame.
        server.sink.write("888760b420bb635c68de0cd84f".decodeHex()).emit()
        client.processNextFrame() // Detects error, disconnects immediately since close already sent.
        client.webSocket!!.finishReader()
        assertThat(client.closed).isTrue()
        client.listener.assertFailure(
          ProtocolException::class.java,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/Daemon.java

        }
    
        public DaemonRegistry getDaemonRegistry() {
            return this.daemonRegistry;
        }
    
        /**
         * Starts the daemon, receiving connections asynchronously (i.e. returns immediately).
         *
         * @throws IllegalStateException if this daemon is already running, or has already been stopped.
         */
        public void start() {
            LOGGER.info("start() called on daemon - {}", daemonContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. src/text/template/doc.go

    However, to aid in formatting template source code, if an action's left
    delimiter (by default "{{") is followed immediately by a minus sign and white
    space, all trailing white space is trimmed from the immediately preceding text.
    Similarly, if the right delimiter ("}}") is preceded by white space and a minus
    sign, all leading white space is trimmed from the immediately following text.
    In these trim markers, the white space must be present:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/runtime/stubs.go

    // then copies back stackArgsSize-stackRetOffset bytes back to the return space
    // in stackArgs once fn has completed. It also "unspills" argument registers from
    // regArgs before calling fn, and spills them back into regArgs immediately
    // following the call to fn. If there are results being returned on the stack,
    // the caller should pass the argument frame type as stackArgsType so that
    // reflectcall can execute appropriate write barriers during the copy.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. src/net/http/httputil/reverseproxy.go

    	// response body.
    	// If zero, no periodic flushing is done.
    	// A negative value means to flush immediately
    	// after each write to the client.
    	// The FlushInterval is ignored when ReverseProxy
    	// recognizes a response as a streaming response, or
    	// if its ContentLength is -1; for such responses, writes
    	// are flushed to the client immediately.
    	FlushInterval time.Duration
    
    	// ErrorLog specifies an optional logger for errors
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 23:37:42 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    	//
    	// KeyComparison functions should ensure they handle an empty existingKey, as "key" is not a required field.
    	//
    	// Warning: when a lock is stolen (from KeyComparison returning true), the old leader may not
    	// immediately be notified they have lost the leader election.
    	KeyComparison KeyComparisonFunc
    
    	// Callbacks are callbacks that are triggered during certain lifecycle
    	// events of the LeaderElector
    	Callbacks LeaderCallbacks
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

    The currently configured max heap space is '512 MiB' and the configured max metaspace is 'unknown'.
    ${COMMON_HINT}""")
        }
    
        def "expires daemon immediately when garbage collector is thrashing"() {
            given:
            if (JavaVersion.current().isJava9Compatible() && GradleContextualExecuter.isConfigCache()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top