Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for termination (0.78 sec)

  1. src/syscall/syscall_windows.go

    	// equal than the number of UTF-16 code units.
    	// Also account for the terminating NUL character.
    	buf := make([]uint16, 0, len(s)+1)
    	buf = encodeWTF16(s, buf)
    	return append(buf, 0), nil
    }
    
    // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,
    // with a terminating NUL removed. Unpaired surrogates are decoded
    // using WTF-8 instead of UTF-8 encoding.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    }
    
    // TestAdmitBelowTerminatingQuotaLimit ensures that terminating pods are charged to the right quota.
    // It creates a terminating and non-terminating quota, and creates a terminating pod.
    // It ensures that the terminating quota is incremented, and the non-terminating quota is not.
    func TestAdmitBelowTerminatingQuotaLimit(t *testing.T) {
    	resourceQuotaNonTerminating := &corev1.ResourceQuota{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		},
    		{
    			name: "victim Pods terminating, feature PodDisruptionConditions is enabled",
    			fts:  feature.Features{EnablePodDisruptionConditions: true},
    			pod:  st.MakePod().Name("p_with_nominated_node").UID("p").Priority(highPriority).NominatedNodeName("node1").Obj(),
    			pods: []*v1.Pod{st.MakePod().Name("p1").UID("p1").Priority(lowPriority).Node("node1").Terminating().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/discovery/v1/generated.pb.go

    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    func (m *EndpointConditions) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Terminating != nil {
    		i--
    		if *m.Terminating {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x18
    	}
    	if m.Serving != nil {
    		i--
    		if *m.Serving {
    			dAtA[i] = 1
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.pb.go

    	return m.MarshalToSizedBuffer(dAtA[:size])
    }
    
    func (m *EndpointConditions) MarshalToSizedBuffer(dAtA []byte) (int, error) {
    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	if m.Terminating != nil {
    		i--
    		if *m.Terminating {
    			dAtA[i] = 1
    		} else {
    			dAtA[i] = 0
    		}
    		i--
    		dAtA[i] = 0x18
    	}
    	if m.Serving != nil {
    		i--
    		if *m.Serving {
    			dAtA[i] = 1
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    // UTF16FromString returns the UTF-16 encoding of the UTF-8 string
    // s, with a terminating NUL added. If s contains a NUL byte at any
    // location, it returns (nil, syscall.EINVAL).
    func UTF16FromString(s string) ([]uint16, error) {
    	return syscall.UTF16FromString(s)
    }
    
    // UTF16ToString returns the UTF-8 encoding of the UTF-16 sequence s,
    // with a terminating NUL and any bytes after the NUL removed.
    func UTF16ToString(s []uint16) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. pkg/apis/batch/validation/validation.go

    	if status.Ready != nil {
    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*status.Ready), fldPath.Child("ready"))...)
    	}
    	if status.Terminating != nil {
    		allErrs = append(allErrs, apivalidation.ValidateNonnegativeField(int64(*status.Terminating), fldPath.Child("terminating"))...)
    	}
    	if status.UncountedTerminatedPods != nil {
    		path := fldPath.Child("uncountedTerminatedPods")
    		seen := sets.New[types.UID]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.Job.json

            "message": "messageValue"
          }
        ],
        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 54.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

            "message": "messageValue"
          }
        ],
        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.json

            "message": "messageValue"
          }
        ],
        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 55.3K bytes
    - Viewed (0)
Back to top