Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for unresponsive (0.14 sec)

  1. src/main/webapp/css/admin/bootstrap.min.css.map

    {\n  $embed-responsive-aspect-ratio-x: nth($embed-responsive-aspect-ratio, 1);\n  $embed-responsive-aspect-ratio-y: nth($embed-responsive-aspect-ratio, 2);\n\n  .embed-responsive-#{$embed-responsive-aspect-ratio-x}by#{$embed-responsive-aspect-ratio-y} {\n    &::before {\n      padding-top: percentage($embed-responsive-aspect-ratio-y / $embed-responsive-aspect-ratio-x);\n    }\n  }\n}\n","// stylelint-disable declaration-no-important\n\n// Flex variation\n//\n// Custom styles for additional flex alignment...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 626.8K 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. CHANGELOG/CHANGELOG-1.6.md

    * Re-add /healthz/ping handler in genericapiserver ([#38603](https://github.com/kubernetes/kubernetes/pull/38603), [@sttts](https://github.com/sttts))
    * Fail kubelet if runtime is unresponsive for 30 seconds ([#38527](https://github.com/kubernetes/kubernetes/pull/38527), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top