Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for Fulfilled (0.46 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // specified type will be used.
      // Defaults to a per object value if not specified. zero means delete immediately.
      // +optional
      optional int64 gracePeriodSeconds = 1;
    
      // Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be
      // returned.
      // +k8s:conversion-gen=false
      // +optional
      optional Preconditions preconditions = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/storage/storage_test.go

    	}{
    		{
    			name: "pod with non-nil schedulingGates",
    			schedulingGates: []api.PodSchedulingGate{
    				{Name: "foo"},
    				{Name: "bar"},
    			},
    			wantErr: goerrors.New(`Operation cannot be fulfilled on pods/binding "foo": pod foo has non-empty .spec.schedulingGates`),
    		},
    		{
    			name:            "pod with nil schedulingGates",
    			schedulingGates: nil,
    			wantErr:         nil,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  3. pkg/controller/controller_utils_test.go

    	// In practice we can't really have add and delete expectations since we only either create or
    	// delete replicas in one rc pass, and the rc goes to sleep soon after until the expectations are
    	// either fulfilled or timeout.
    	adds, dels := 10, 30
    	rc := newReplicationController(1)
    
    	// RC fires off adds and deletes at apiserver, then sets expectations
    	rcKey, err := KeyFunc(rc)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// Defaults to a per object value if not specified. zero means delete immediately.
    	// +optional
    	GracePeriodSeconds *int64 `json:"gracePeriodSeconds,omitempty" protobuf:"varint,1,opt,name=gracePeriodSeconds"`
    
    	// Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be
    	// returned.
    	// +k8s:conversion-gen=false
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions"
                  }
                ],
                "description": "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned."
              },
              "propagationPolicy": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller_test.go

    	}
    
    	dsExp, exists, err := dsc.expectations.GetExpectations(oldDSKey)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !exists {
    		t.Fatalf("No expectations found for DaemonSet %q", oldDSKey)
    	}
    	if dsExp.Fulfilled() {
    		t.Errorf("There should be unfulfilled expectation for creating new pods for DaemonSet %q", oldDSKey)
    	}
    
    	// process updates DS, update adds to queue
    	waitForQueueLength(1, "updated DS")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
Back to top