Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,275 for _objects (0.19 sec)

  1. staging/src/k8s.io/api/storage/v1/types.go

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "type": "string"
              },
              "ownerReferences": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

    }
    
    // PodSchedulingContextList is a collection of Pod scheduling objects.
    message PodSchedulingContextList {
      // Standard list metadata
      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ListMeta metadata = 1;
    
      // Items is the list of PodSchedulingContext objects.
      repeated PodSchedulingContext items = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/storage/v1beta1/generated.proto

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// desiredAPIVersion is the version to convert given objects to. e.g. "myapi.example.com/v1"
    	DesiredAPIVersion string `json:"desiredAPIVersion" protobuf:"bytes,2,name=desiredAPIVersion"`
    	// objects is the list of custom resource objects to be converted.
    	// +listType=atomic
    	Objects []runtime.RawExtension `json:"objects" protobuf:"bytes,3,rep,name=objects"`
    }
    
    // ConversionResponse describes a conversion response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    			"name":            "object1",
    			"resourceVersion": "object1v2",
    		},
    	})
    	object1v2.SetGroupVersionKind(fakeGVK)
    
    	object2 := &unstructured.Unstructured{}
    	object2.SetUnstructuredContent(map[string]interface{}{
    		"metadata": map[string]interface{}{
    			"name":            "object2",
    			"resourceVersion": "object2",
    		},
    	})
    	object2.SetGroupVersionKind(fakeGVK)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// desiredAPIVersion is the version to convert given objects to. e.g. "myapi.example.com/v1"
    	DesiredAPIVersion string `json:"desiredAPIVersion" protobuf:"bytes,2,name=desiredAPIVersion"`
    	// objects is the list of custom resource objects to be converted.
    	// +listType=atomic
    	Objects []runtime.RawExtension `json:"objects" protobuf:"bytes,3,rep,name=objects"`
    }
    
    // ConversionResponse describes a conversion response.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  8. pkg/registry/rbac/rest/storage_rbac.go

    		// If the source exists, but the target does not,
    		// copy the subjects, labels, and annotations from the former to create the latter.
    		klog.V(1).Infof("copying subjects, labels, and annotations from ClusterRoleBinding %q to template %q", existingBindingName, clusterRoleBindingToCreate.Name)
    		newCRB := clusterRoleBindingToCreate.DeepCopy()
    		newCRB.Subjects = existingRoleBinding.Subjects
    		newCRB.Labels = existingRoleBinding.Labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  9. pkg/apis/certificates/types.go

    	TrustBundle string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // ClusterTrustBundleList is a collection of ClusterTrustBundle objects
    type ClusterTrustBundleList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	// Items is a collection of ClusterTrustBundle objects
    	Items []ClusterTrustBundle
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 11K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// This object must be a pointer type for use with Codec.DecodeInto([]byte, runtime.Object)
    	New() runtime.Object
    
    	// Create creates a new version of a resource.
    	Create(ctx context.Context, obj runtime.Object, createValidation ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
    }
    
    // NamedCreater is an object that can create an instance of a RESTful object using a name parameter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top