Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,371 for resourceVersion (0.2 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/policy.v1.Eviction.json

      "apiVersion": "policy/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 06 21:25:20 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/policy.v1beta1.Eviction.yaml

    apiVersion: policy/v1beta1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.29.0/policy.v1.Eviction.json

      "apiVersion": "policy/v1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.29.0/policy.v1.Eviction.yaml

    apiVersion: policy/v1
    deleteOptions:
      dryRun:
      - dryRunValue
      gracePeriodSeconds: 1
      orphanDependents: true
      preconditions:
        resourceVersion: resourceVersionValue
        uid: uidValue
      propagationPolicy: propagationPolicyValue
    kind: Eviction
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/policy.v1beta1.Eviction.json

      "apiVersion": "policy/v1beta1",
      "metadata": {
        "name": "nameValue",
        "generateName": "generateNameValue",
        "namespace": "namespaceValue",
        "selfLink": "selfLinkValue",
        "uid": "uidValue",
        "resourceVersion": "resourceVersionValue",
        "generation": 7,
        "creationTimestamp": "2008-01-01T01:01:01Z",
        "deletionTimestamp": "2009-01-01T01:01:01Z",
        "deletionGracePeriodSeconds": 10,
        "labels": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/patch.go

    type ObjectMetaForFinalizersPatch struct {
    	ResourceVersion string   `json:"resourceVersion"`
    	Finalizers      []string `json:"finalizers"`
    }
    
    type objectForPatch struct {
    	ObjectMetaForPatch `json:"metadata"`
    }
    
    // ObjectMetaForPatch defines object meta struct for patch operation.
    type ObjectMetaForPatch struct {
    	ResourceVersion string                  `json:"resourceVersion"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  7. pkg/wasm/cache_test.go

    	var defaultPullPolicy PullPolicy
    
    	testWasmGet := func(downloadURL string, policy PullPolicy, resourceVersion string, wantFilePath string, wantNumRequest int) {
    		t.Helper()
    		gotFilePath, err := cache.Get(downloadURL, GetOptions{
    			ResourceName:    "namespace.resource",
    			ResourceVersion: resourceVersion,
    			RequestTimeout:  time.Second * 10,
    			PullSecret:      []byte{},
    			PullPolicy:      policy,
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/validation/validation.go

    	}
    	allErrs := field.ErrorList{}
    	if match := options.ResourceVersionMatch; len(match) > 0 {
    		if len(options.ResourceVersion) == 0 {
    			allErrs = append(allErrs, field.Forbidden(field.NewPath("resourceVersionMatch"), "resourceVersionMatch is forbidden unless resourceVersion is provided"))
    		}
    		if len(options.Continue) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. pkg/controller/endpoint/endpoints_controller_test.go

    			if epa.TargetRef.UID != pod.ObjectMeta.UID {
    				t.Fatalf("TargetRef.UID: expected: %s, got: %s", pod.ObjectMeta.UID, epa.TargetRef.UID)
    			}
    			if epa.TargetRef.ResourceVersion != "" {
    				t.Fatalf("TargetRef.ResourceVersion: expected empty, got: %s", epa.TargetRef.ResourceVersion)
    			}
    		})
    	}
    
    }
    
    func TestLastTriggerChangeTimeAnnotation(t *testing.T) {
    	ns := "other"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/client-go/applyconfigurations/core/v1/objectreference.go

    	Name            *string    `json:"name,omitempty"`
    	UID             *types.UID `json:"uid,omitempty"`
    	APIVersion      *string    `json:"apiVersion,omitempty"`
    	ResourceVersion *string    `json:"resourceVersion,omitempty"`
    	FieldPath       *string    `json:"fieldPath,omitempty"`
    }
    
    // ObjectReferenceApplyConfiguration constructs an declarative configuration of the ObjectReference type for use with
    // apply.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.3K bytes
    - Viewed (0)
Back to top