Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for updatePod (2.34 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	}
    
    	logger.V(4).Info("status of claim for pod got updated", "pod", klog.KObj(pod), "claim", klog.KObj(modifiedClaim))
    	return framework.Queue, nil
    }
    
    // isSchedulableAfterPodSchedulingContextChange is invoked for all
    // PodSchedulingContext events reported by an informer. It checks whether that
    // change made a previously unschedulable pod schedulable (updated) or a new
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // CHECK:    tf_device.return
    // CHECK:  })
    // CHECK-SAME: _replication_info = "foo"
    // CHECK: "tf.AssignAddVariableOp"([[VAR]], [[CONST]])
    
    // Preceding user is using resource updated by the cluster within a nested op.
    // Resource is updated by a cluster op, and opA (not in cluster) is using the
    // resource in a nested op. We expect opA to be after the cluster.
    // CHECK-LABEL: func @cluster_nested_op_using_resource
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top