Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 154 for _objects (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations
    	// +optional
    	Annotations map[string]string `json:"annotations,omitempty" protobuf:"bytes,12,rep,name=annotations"`
    
    	// List of objects depended by this object. If ALL objects in the list have
    	// been deleted, this object will be garbage collected. If this object is managed by a controller,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    // deleteWithoutFinalizers handles deleting an object ignoring its finalizer list.
    // Used for objects that are either been finalized or have never initialized.
    func (e *Store) deleteWithoutFinalizers(ctx context.Context, name, key string, obj runtime.Object, preconditions *storage.Preconditions, options *metav1.DeleteOptions) (runtime.Object, bool, error) {
    	out := e.NewFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    // is stored at the end of a span for small objects and is unrolled at
    // runtime from type metadata for all larger objects. Objects without
    // pointers have neither a bitmap nor associated type metadata.
    //
    // Bits in all cases correspond to words in little-endian order.
    //
    // For small objects, if s is the mspan for the span starting at "start",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    				}
    				modified[i] = obj
    			default:
    				t.Fatalf("unsupported object type %T", obj)
    			}
    		}
    	}
    	return modified
    }
    
    func sortObjects(objects []metav1.Object) {
    	sort.Slice(objects, func(i, j int) bool {
    		if objects[i].GetNamespace() < objects[j].GetNamespace() {
    			return true
    		}
    		return objects[i].GetName() < objects[j].GetName()
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Forbidden(field.NewPath("spec").Child("rules").Index(0).Child("subjects").Index(0).Child("user"), "user is forbidden when subject kind is not 'User'"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    		if state != nil && state.stack.lo <= val && val < state.stack.hi {
    			// val may point to a stack object. This
    			// object may be dead from last cycle and
    			// hence may contain pointers to unallocated
    			// objects, but unlike heap objects we can't
    			// tell if it's already dead. Hence, if all
    			// pointers to this object are from
    			// conservative scanning, we have to scan it
    			// defensively, too.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    			Bucket:           ri.Bucket,
    			Object:           ri.Object,
    			Objects:          ri.Objects,
    			ObjectsFailed:    ri.ObjectsFailed,
    			BytesTransferred: ri.BytesTransferred,
    			BytesFailed:      ri.BytesFailed,
    		}
    	case string(madmin.BatchJobKeyRotate):
    		m.KeyRotate = &madmin.KeyRotationInfo{
    			Bucket:        ri.Bucket,
    			Object:        ri.Object,
    			Objects:       ri.Objects,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // Network Policy List is a list of NetworkPolicy objects.
    type NetworkPolicyList struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard list metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// Items is a list of schema objects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    	// It must match the pod template's labels.
    	// More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors
    	Selector *metav1.LabelSelector `json:"selector" protobuf:"bytes,2,opt,name=selector"`
    
    	// template is the object that describes the pod that will be created if
    	// insufficient replicas are detected. Each pod stamped out by the StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        Object configure(Object object, Closure configureClosure);
    
        /**
         * Configures a collection of objects via a closure. This is equivalent to calling {@link #configure(Object,
         * groovy.lang.Closure)} for each of the given objects.
         *
         * @param objects The objects to configure
         * @param configureClosure The closure with configure statements
         * @return The configured objects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top