Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for not_ready (0.31 sec)

  1. tests/integration/pilot/grpc_probe_test.go

    	if !wantReady {
    		cfg.ReadinessTimeout = time.Second * 15
    	}
    	_, err := deployment.New(ctx).
    		With(&grpcProbe, cfg).
    		Build()
    	gotReady := err == nil
    	if gotReady != wantReady {
    		ctx.Errorf("grpcProbe app %v, got error %v, want ready = %v", name, err, wantReady)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/config/types.go

    	LargeClusterSizeThreshold int32
    	// Zone is treated as unhealthy in nodeEvictionRate and secondaryNodeEvictionRate when at least
    	// unhealthyZoneThreshold (no less than 3) of Nodes in the zone are NotReady
    	UnhealthyZoneThreshold float32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-syscall-steal-proc-sitting-in-syscall.go

    	b0.Event("ProcSteal", trace.ProcID(0), testgen.Seq(1), trace.ThreadID(1))
    
    	// Status event for a goroutine blocked in a syscall for the entire generation.
    	bz := g.Batch(trace.NoThread, 0)
    	bz.Event("GoStatus", trace.GoID(1), trace.ThreadID(1), go122.GoSyscall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 946 bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/server.go

    	// Set some defaults
    	s := &Server{
    		ctx:        ctx,
    		kubeClient: client,
    		isReady:    ready,
    		dataplane: &meshDataplane{
    			kubeClient: client.Kube(),
    			netServer:  netServer,
    		},
    	}
    	s.NotReady()
    	s.handlers = setupHandlers(s.ctx, s.kubeClient, s.dataplane, args.SystemNamespace)
    
    	cniServer := startCniPluginServer(ctx, pluginSocket, s.handlers, s.dataplane)
    	err = cniServer.Start()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. pkg/util/node/node_test.go

    					Conditions: []v1.NodeCondition{
    						{
    							Type:   v1.NodeReady,
    							Status: v1.ConditionTrue,
    						},
    					},
    				},
    			},
    			expect: true,
    		},
    		{
    			name: "case that returns false",
    			Node: &v1.Node{
    				Status: v1.NodeStatus{
    					Conditions: []v1.NodeCondition{
    						{
    							Type:   v1.NodeReady,
    							Status: v1.ConditionFalse,
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  6. src/cmd/trace/threadgen.go

    		gs := g.gStates[r.Scope.Goroutine()]
    		gs.rangeEnd(ev.Time(), r.Name, ev.Stack(), ctx)
    	}
    }
    
    func (g *threadGenerator) GoroutineTransition(ctx *traceContext, ev *trace.Event) {
    	if ev.Thread() != trace.NoThread {
    		if _, ok := g.threads[ev.Thread()]; !ok {
    			g.threads[ev.Thread()] = struct{}{}
    		}
    	}
    
    	st := ev.StateTransition()
    	goID := st.Resource.Goroutine()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    	b0.Event("GoSyscallEndBlocked")
    	b0.Event("ProcStatus", trace.ProcID(0), go122.ProcIdle)
    	b0.Event("ProcStart", trace.ProcID(0), testgen.Seq(1))
    	b0.Event("GoStatus", trace.GoID(4), trace.NoThread, go122.GoRunnable)
    	b0.Event("GoStart", trace.GoID(4), testgen.Seq(1))
    	b0.Event("GoSyscallBegin", testgen.Seq(2), testgen.NoStack)
    	b0.Event("GoDestroySyscall")
    
    	// A new Go-created thread with the same ID appears and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/internal/trace/resources.go

    package trace
    
    import "fmt"
    
    // ThreadID is the runtime-internal M structure's ID. This is unique
    // for each OS thread.
    type ThreadID int64
    
    // NoThread indicates that the relevant events don't correspond to any
    // thread in particular.
    const NoThread = ThreadID(-1)
    
    // ProcID is the runtime-internal G structure's id field. This is unique
    // for each P.
    type ProcID int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. cluster/validate-cluster.sh

          exit 1
        else
          continue
        fi
      fi
      found=$(echo -n "${node}" | wc -l)
      # Use grep || true so that empty result doesn't return nonzero exit code.
      ready=$(echo -n "${node}" | grep -c -v "NotReady" || true)
    
      if (( "${found}" == "${EXPECTED_NUM_NODES}" )) && (( "${ready}" == "${EXPECTED_NUM_NODES}")); then
        break
      elif (( "${found}" > "${EXPECTED_NUM_NODES}" )); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 01 06:35:39 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  10. pkg/util/node/node.go

    	}
    	return nodeIP
    }
    
    // IsNodeReady returns true if a node is ready; false otherwise.
    func IsNodeReady(node *v1.Node) bool {
    	for _, c := range node.Status.Conditions {
    		if c.Type == v1.NodeReady {
    			return c.Status == v1.ConditionTrue
    		}
    	}
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top