Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for termination (0.19 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    // controller will use to perform updates. It includes any additional parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    // controller will use to perform updates. It includes any additional parameters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. pkg/kubelet/status/status_manager_test.go

    				}
    			}),
    			expectFn: func(t *testing.T, status v1.PodStatus) {
    				status.Phase = v1.PodFailed
    			},
    		},
    		{
    			name: "last termination state set",
    			pod: newPod(0, 1, func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyNever
    				pod.Status.Phase = v1.PodRunning
    				pod.Status.ContainerStatuses = []v1.ContainerStatus{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  4. src/runtime/mgcmark.go

    		systemstack(func() {
    			// If this is a self-scan, put the user G in
    			// _Gwaiting to prevent self-deadlock. It may
    			// already be in _Gwaiting if this is a mark
    			// worker or we're in mark termination.
    			userG := getg().m.curg
    			selfScan := gp == userG && readgstatus(userG) == _Grunning
    			if selfScan {
    				casGToWaitingForGC(userG, _Grunning, waitReasonGarbageCollectionScan)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		if len(tls.CertificateRefs) != 1 {
    			// This is required in the API, should be rejected in validation
    			return out, &ConfigError{Reason: InvalidTLS, Message: "exactly 1 certificateRefs should be present for TLS termination"}
    		}
    		cred, err := buildSecretReference(ctx, tls.CertificateRefs[0], gw)
    		if err != nil {
    			return out, err
    		}
    		credNs := ptr.OrDefault((*string)(tls.CertificateRefs[0].Namespace), namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/go/parser/parser.go

    			// comment group, thus the last comment group is a lead comment.
    			p.leadComment = comment
    		}
    	}
    }
    
    // A bailout panic is raised to indicate early termination. pos and msg are
    // only populated when bailing out of object resolution.
    type bailout struct {
    	pos token.Pos
    	msg string
    }
    
    func (p *parser) error(pos token.Pos, msg string) {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  7. pkg/proxy/endpointschangetracker_test.go

    					&BaseEndpointInfo{ip: "10.0.1.5", port: 80, endpoint: "10.0.1.5:80", isLocal: true, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.2.1", port: 80, endpoint: "10.0.2.1:80", isLocal: false, ready: true, serving: true, terminating: false},
    					&BaseEndpointInfo{ip: "10.0.2.2", port: 80, endpoint: "10.0.2.2:80", isLocal: true, ready: true, serving: true, terminating: false},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller_test.go

    		informerFactory.Core().V1().Services().Informer().GetStore(),
    	}
    }
    
    func newPod(n int, namespace string, ready bool, nPorts int, terminating bool) *v1.Pod {
    	status := v1.ConditionTrue
    	if !ready {
    		status = v1.ConditionFalse
    	}
    
    	var deletionTimestamp *metav1.Time
    	if terminating {
    		deletionTimestamp = &metav1.Time{
    			Time: time.Now(),
    		}
    	}
    
    	p := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		handlerFunc = r.serveStatus(w, req, requestInfo, crdInfo, terminating, supportedTypes)
    	case subresource == "scale" && subresources != nil && subresources.Scale != nil:
    		handlerFunc = r.serveScale(w, req, requestInfo, crdInfo, terminating, supportedTypes)
    	case len(subresource) == 0:
    		handlerFunc = r.serveResource(w, req, requestInfo, crdInfo, crd, terminating, supportedTypes)
    	default:
    		responsewriters.ErrorNegotiated(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	"k8s.io/kubernetes/pkg/volume/util/types"
    )
    
    const (
    	Removed     string = "removed"
    	Terminating string = "terminating"
    	Other       string = "other"
    )
    
    func pluginPVOmittingClient(dswp *desiredStateOfWorldPopulator) {
    	fakeClient := &fake.Clientset{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
Back to top