Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 138 for updatePod (0.32 sec)

  1. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
                "type": "string"
              },
              "metadata": {
                "allOf": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///
      /// After this call `file` may be concurrently accessed by multiple threads.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` if `file` was updated.
      ///   * Must set `status` to `TF_NOT_FOUND` if `path` doesn't point to an
      ///     existing file or one of the parent entries in `path` doesn't exist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    the key is formatted as "bucketName/objectName" for an object that exists in the bucket, and the value is the JSON-encoded event data about the operation that created/replaced the object in MinIO. When objects are updated or deleted, the corresponding entry in the hash is also updated or deleted.
    
    When the _access_ format is used, MinIO appends events to a list using [RPUSH](https://redis.io/commands/rpush). Each item in the list is a JSON encoded list with two items, where the first item...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1/types.go

    	// The update starts by launching new pods on 30% of nodes. Once an updated
    	// pod is available (Ready for at least minReadySeconds) the old DaemonSet pod
    	// on that node is marked deleted. If the old pod becomes unavailable for any
    	// reason (Ready transitions to false, is evicted, or is drained) an updated
    	// pod is immediatedly created on that node without considering surge limits.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  5. pkg/controller/volume/persistentvolume/pv_controller.go

    	// Cache of the last known version of volumes and claims. This cache is
    	// thread safe as long as the volumes/claims there are not modified, they
    	// must be cloned before any modification. These caches get updated both by
    	// "xxx added/updated/deleted" events from etcd and by the controller when
    	// it saves newer version to etcd.
    	// Why local cache: binding a volume to a claim generates 4 events, roughly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  6. common/scripts/metallb-native.yaml

              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                type: string
              metadata:
                type: object
              spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// The update starts by launching new pods on 30% of nodes. Once an updated
    	// pod is available (Ready for at least minReadySeconds) the old DaemonSet pod
    	// on that node is marked deleted. If the old pod becomes unavailable for any
    	// reason (Ready transitions to false, is evicted, or is drained) an updated
    	// pod is immediatedly created on that node without considering surge limits.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	objectMeta.SetName(t.namer(1))
    	objectMeta.SetNamespace("not-default")
    
    	obj, updated, err := t.storage.(rest.Updater).Update(t.TestContext(), "foo1", rest.DefaultUpdatedObjectInfo(storedFoo), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    	if obj != nil || updated {
    		t.Errorf("expected nil object and not updated")
    	}
    	if err == nil {
    		t.Errorf("expected an error, but didn't get one")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    	var updated []metav1.Object
    
    	for _, obj := range objects {
    		switch in := obj.(type) {
    		case *resourcev1alpha2.ResourceClaim:
    			if updates.claim != nil {
    				obj = updates.claim(in)
    			}
    		case *resourcev1alpha2.PodSchedulingContext:
    			if updates.scheduling != nil {
    				obj = updates.scheduling(in)
    			}
    		}
    		updated = append(updated, obj)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  10. pkg/controller/history/controller_history_test.go

    		if test.reactor != nil {
    			client.PrependReactor("*", "*", test.reactor)
    		}
    		updated, err := history.UpdateControllerRevision(test.revision, test.newRevision)
    		if !test.err && err != nil {
    			t.Errorf("%s: %s", test.name, err)
    		}
    		if !test.err && updated.Revision != test.newRevision {
    			t.Errorf("%s: got %d want %d", test.name, updated.Revision, test.newRevision)
    		}
    		if test.err && err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
Back to top