Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for unresponsive (0.2 sec)

  1. CONTRIBUTING.md

    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent_test.go

    			_ = os.RemoveAll(dir)
    		})
    	})
    	t.Run("Unhealthy SDS socket", func(t *testing.T) {
    		dir := filepath.Dir(security.WorkloadIdentitySocketPath)
    		os.MkdirAll(dir, 0o755)
    
    		// starting an unresponsive listener on the socket
    		l, err := net.Listen("unix", security.WorkloadIdentitySocketPath)
    		if err != nil {
    			t.Fatal(err)
    		}
    		defer l.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    				logger.Error(nil, "Failed to instantly swap NotReadyTaint to UnreachableTaint. Will try again in the next cycle")
    			}
    		} else if nc.markNodeForTainting(node, v1.ConditionUnknown) {
    			logger.V(2).Info("Node is unresponsive. Adding it to the Taint queue", "node", klog.KObj(node), "timeStamp", decisionTimestamp)
    		}
    	case v1.ConditionTrue:
    		removed, err := nc.markNodeAsReachable(ctx, node)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. pkg/controller/volume/attachdetach/attach_detach_controller.go

    	// attach detach controller will wait for a volume to be safely unmounted
    	// from its node. Once this time has expired, the controller will assume the
    	// node or kubelet are unresponsive and will detach the volume anyway.
    	ReconcilerMaxWaitForUnmountDuration time.Duration
    
    	// DesiredStateOfWorldPopulatorLoopSleepPeriod is the amount of time the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  5. pkg/controller/podautoscaler/config/types.go

    type HPAControllerConfiguration struct {
    	// ConcurrentHorizontalPodAutoscalerSyncs is the number of HPA objects that are allowed to sync concurrently.
    	// Larger number = more responsive HPA processing, but more CPU (and network) load.
    	ConcurrentHorizontalPodAutoscalerSyncs int32
    	// horizontalPodAutoscalerSyncPeriod is the period for syncing the number of
    	// pods in horizontal pod autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.DurationVar(&o.HorizontalPodAutoscalerSyncPeriod.Duration, "horizontal-pod-autoscaler-sync-period", o.HorizontalPodAutoscalerSyncPeriod.Duration, "The period...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top