Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 168 for _objects (0.34 sec)

  1. common/scripts/metallb-native.yaml

                            are ANDed.
                          type: object
                      type: object
                      x-kubernetes-map-type: atomic
                    type: array
                type: object
              status:
                description: L2AdvertisementStatus defines the observed state of L2Advertisement.
                type: object
            type: object
        served: true
        storage: true
        subresources:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	if err != nil {
    		return err
    	}
    	v.Infos = append(v.Infos, info)
    	return v.InjectErr
    }
    
    func (v *testVisitor) Objects() []runtime.Object {
    	objects := []runtime.Object{}
    	for i := range v.Infos {
    		objects = append(objects, v.Infos[i].Object)
    	}
    	return objects
    }
    
    var aPod string = `
    {
        "kind": "Pod",
    		"apiVersion": "` + corev1GV.String() + `",
        "metadata": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "string"
            },
            "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top