Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for UNHEALTHY (0.26 sec)

  1. pkg/kubelet/cm/devicemanager/manager.go

    	if healthyDevices.Len() == 0 {
    		return nil, fmt.Errorf("no healthy devices present; cannot allocate unhealthy devices %s", resource)
    	}
    
    	// Check if all the previously allocated devices are healthy
    	if !healthyDevices.IsSuperset(devices) {
    		return nil, fmt.Errorf("previously allocated devices are no longer healthy; cannot allocate unhealthy devices %s", resource)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  2. pilot/pkg/autoregistration/controller_test.go

    		c1.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: true,
    		})
    		// ensure health condition has been updated
    		checkHealthOrFail(t, store, p, true)
    	})
    	t.Run("unhealthy", func(t *testing.T) {
    		// report workload is unhealthy
    		c1.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: false,
    			Message: "lol health bad",
    		})
    		// ensure health condition has been updated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			for _, ip := range proxy.IPAddresses {
    				if ip != instance.Address {
    					continue
    				}
    				// If the endpoint isn't ready, report this
    				if instance.HealthStatus == model.UnHealthy && esc.c.opts.Metrics != nil {
    					esc.c.opts.Metrics.AddMetric(model.ProxyStatusEndpointNotReady, proxy.ID, proxy.ID, "")
    				}
    				si := model.ServiceTarget{
    					Service: svc,
    					Port: model.ServiceInstancePort{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.util.intstr.IntOrString maxUnavailable = 3;
    
      // UnhealthyPodEvictionPolicy defines the criteria for when unhealthy pods
      // should be considered for eviction. Current implementation considers healthy pods,
      // as pods that have status.conditions item with type="Ready",status="True".
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller.go

    	curr.Spec = wle
    	key := configKey{
    		kind:      workloadEntryConfigType,
    		name:      curr.Name,
    		namespace: curr.Namespace,
    	}
    
    	// If an entry is unhealthy, we will mark this as a delete instead
    	// This ensures we do not track unhealthy endpoints
    	if features.WorkloadEntryHealthChecks && !isHealthy(curr) {
    		event = model.EventDelete
    	}
    
    	wi := s.convertWorkloadEntryToWorkloadInstance(curr, s.Cluster())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

     *
     * Unfortunately Java's networking APIs don't offer a good health check, so we go on our own by
     * attempting to read with a short timeout. If the fails immediately we know the socket is
     * unhealthy.
     *
     * @param source the source used to read bytes from the socket.
     */
    internal fun Socket.isHealthy(source: BufferedSource): Boolean {
      return try {
        val readTimeout = soTimeout
        try {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    )
    
    var (
    	kubeadmJoinFailMsg = dedent.Dedent(`
    		Unfortunately, an error has occurred:
    			%v
    
    		This error is likely caused by:
    			- The kubelet is not running
    			- The kubelet is unhealthy due to a misconfiguration of the node in some way (required cgroups disabled)
    
    		If you are on a systemd-powered system, you can try to troubleshoot the error with the following commands:
    			- 'systemctl status kubelet'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

        // If we do have a route selector, use its routes.
        return localRouteSelector.hasNext()
      }
    
      /**
       * Return the route from [connection] if it should be retried, even if the connection itself is
       * unhealthy. The biggest gotcha here is that we shouldn't reuse routes from coalesced
       * connections.
       */
      private fun retryRoute(connection: RealConnection): Route? {
        return connection.withLock {
          when {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_4x.md

        `okhttp-tls` module.
    
     *  Upgrade: [Kotlin 1.3.71][kotlin_1_3_71].
    
    
    ## Version 4.5.0
    
    _2020-04-06_
    
    **This release fixes a severe bug where OkHttp incorrectly detected and recovered from unhealthy
    connections.** Stale or canceled connections were incorrectly attempted when they shouldn't have
    been, leading to rare cases of infinite retries. Please upgrade to this release!
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/ConnectionCoalescingTest.kt

       * - The second request uses the coalesced connection from request1.
       * - The coalesced connection is violently closed after servicing the first request.
       * - The second request discovers the coalesced connection is unhealthy just after acquiring it.
       */
      @Test
      fun coalescedConnectionDestroyedAfterAcquire() {
        server.enqueue(MockResponse())
        server.enqueue(MockResponse())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top