Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for unresponsive (0.4 sec)

  1. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-width">{@code
       * Sec-CH-Viewport-Width}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String SEC_CH_VIEWPORT_WIDTH = "Sec-CH-Viewport-Width";
      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-height">{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    	AllowCacheTTL time.Duration
    
    	// DenyCacheTTL is the length of time that an unsuccessful authorization response will be cached.
    	// You generally want more responsive, "deny, try again" flows.
    	DenyCacheTTL time.Duration
    
    	// AlwaysAllowPaths are HTTP paths which are excluded from authorization. They can be plain
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/scheduler/rate_limited_queue.go

    const (
    	// NodeHealthUpdateRetry controls the number of retries of writing
    	// node health update.
    	NodeHealthUpdateRetry = 5
    	// NodeEvictionPeriod controls how often NodeController will try to
    	// evict Pods from non-responsive Nodes.
    	NodeEvictionPeriod = 100 * time.Millisecond
    	// EvictionRateLimiterBurst is the burst value for all eviction rate
    	// limiters
    	EvictionRateLimiterBurst = 1
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 07:50:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-width">{@code
       * Sec-CH-Viewport-Width}</a> header field name.
       *
       * @since 32.0.0
       */
      public static final String SEC_CH_VIEWPORT_WIDTH = "Sec-CH-Viewport-Width";
      /**
       * The HTTP <a
       * href="https://wicg.github.io/responsive-image-client-hints/#sec-ch-viewport-height">{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    func (cc *http2ClientConn) closeConn() {
    	t := time.AfterFunc(250*time.Millisecond, cc.forceCloseConn)
    	defer t.Stop()
    	cc.tconn.Close()
    }
    
    // A tls.Conn.Close can hang for a long time if the peer is unresponsive.
    // Try to shut it down more aggressively.
    func (cc *http2ClientConn) forceCloseConn() {
    	tc, ok := cc.tconn.(*tls.Conn)
    	if !ok {
    		return
    	}
    	if nc := tc.NetConn(); nc != nil {
    		nc.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. pkg/istio-agent/agent.go

    	if fi, err := os.Stat(path); err == nil && !fi.Mode().IsRegular() {
    		return true
    	}
    	return false
    }
    
    // Checks whether the socket exists and is responsive.
    // If it doesn't exist, returns (false, nil)
    // If it exists and is NOT responsive, tries to delete the socket file.
    // If it can be deleted, returns (false, nil).
    // If it cannot be deleted, returns (false, error).
    // Otherwise, returns (true, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.css

    12px}.uk-table-small .uk-table-link>a{padding:10px 12px}@media (max-width:959px){.uk-table-responsive,.uk-table-responsive tbody,.uk-table-responsive td,.uk-table-responsive th,.uk-table-responsive tr{display:block}.uk-table-responsive thead{display:none}.uk-table-responsive td,.uk-table-responsive th{width:auto!important;max-width:none!important;min-width:0!important;overflow:visible!important;white-space:normal!important}.uk-table-responsive .uk-table-link:not(:first-child)>a,.uk-table-responsive td:not(:first-c...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 257.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

      /** All waiting threads. */
      @CheckForNull private volatile Waiter waiters;
    
      /** Constructor for use by subclasses. */
      protected AbstractFuture() {}
    
      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
      // * Future completion is defined by when #value becomes non-null/non SetFuture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

      /** All waiting threads. */
      @CheckForNull private volatile Waiter waiters;
    
      /** Constructor for use by subclasses. */
      protected AbstractFuture() {}
    
      // Gets and Timed Gets
      //
      // * Be responsive to interruption
      // * Don't create Waiter nodes if you aren't going to park, this helps reduce contention on the
      //   waiters field.
      // * Future completion is defined by when #value becomes non-null/non SetFuture
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  10. pkg/kubelet/kubelet_getters.go

    			containerName := containerDir.Name()
    			containerPath := filepath.Join(volumePluginPath, containerName)
    			// Switch to ReadDirNoStat at the subPathIndex level to prevent issues with stat'ing
    			// mount points that may not be responsive
    			subPaths, err := utilpath.ReadDirNoStat(containerPath)
    			if err != nil {
    				return volumes, fmt.Errorf("could not read directory %s: %v", containerPath, err)
    			}
    			for _, subPathDir := range subPaths {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
Back to top