Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,898 for typeA (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/types.go

    type Configuration struct {
    	metav1.TypeMeta
    
    	// LimitedResources whose consumption is limited by default.
    	// +optional
    	LimitedResources []LimitedResource
    }
    
    // LimitedResource matches a resource whose consumption is limited by default.
    // To consume the resource, there must exist an associated quota that limits
    // its consumption.
    type LimitedResource struct {
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 2.8K bytes
    - Viewed (0)
  2. fastapi/types.py

    import types
    from enum import Enum
    from typing import Any, Callable, Dict, Set, Type, TypeVar, Union
    
    from pydantic import BaseModel
    
    DecoratedCallable = TypeVar("DecoratedCallable", bound=Callable[..., Any])
    UnionType = getattr(types, "UnionType", Union)
    ModelNameMap = Dict[Union[Type[BaseModel], Type[Enum]], str]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Dec 12 00:29:03 UTC 2023
    - 383 bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types.go

    // Note that because of the atomicity guarantees, stores to values
    // of this type never trigger a write barrier, and the relevant
    // methods are suffixed with "NoWB" to indicate that explicitly.
    // As a result, this type should be used carefully, and sparingly,
    // mostly with values that do not live in the Go heap anyway.
    //
    // An UnsafePointer must not be copied.
    type UnsafePointer struct {
    	noCopy noCopy
    	value  unsafe.Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. src/os/types.go

    func Getpagesize() int { return syscall.Getpagesize() }
    
    // File represents an open file descriptor.
    //
    // The methods of File are safe for concurrent use.
    type File struct {
    	*file // os specific
    }
    
    // A FileInfo describes a file and is returned by [Stat] and [Lstat].
    type FileInfo = fs.FileInfo
    
    // A FileMode represents a file's mode and permission bits.
    // The bits have the same definition on all systems, so that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. pkg/controller/certificates/signer/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // CSRSigningControllerConfiguration contains elements describing CSRSigningController.
    type CSRSigningControllerConfiguration struct {
    	// clusterSigningCertFile is the filename containing a PEM-encoded
    	// X509 CA certificate used to issue cluster-scoped certificates
    	ClusterSigningCertFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 02 03:38:15 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  6. pkg/controller/daemon/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // DaemonSetControllerConfiguration contains elements describing DaemonSetController.
    type DaemonSetControllerConfiguration struct {
    	// concurrentDaemonSetSyncs is the number of daemonset objects that are
    	// allowed to sync concurrently. Larger number = more responsive daemonset,
    	// but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 941 bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/metaonly/types.go

    // JSON data.
    // TODO: enable meta-only decoding for protobuf.
    //
    // +k8s:deepcopy-gen=true
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    type MetadataOnlyObject struct {
    	metav1.TypeMeta `json:",inline"`
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty"`
    }
    
    // MetadataOnlyObjectList allows decoding from JSON data only the typemeta and metadata of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 07:28:47 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  8. pkg/controller/namespace/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // NamespaceControllerConfiguration contains elements describing NamespaceController.
    type NamespaceControllerConfiguration struct {
    	// namespaceSyncPeriod is the period for syncing namespace life-cycle
    	// updates.
    	NamespaceSyncPeriod metav1.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 1K bytes
    - Viewed (0)
  9. pkg/controller/nodeipam/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // NodeIPAMControllerConfiguration contains elements describing NodeIPAMController.
    type NodeIPAMControllerConfiguration struct {
    	// serviceCIDR is CIDR Range for Services in cluster.
    	ServiceCIDR string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 15 23:38:06 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  10. pkg/controller/serviceaccount/config/types.go

    limitations under the License.
    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // SAControllerConfiguration contains elements describing ServiceAccountController.
    type SAControllerConfiguration struct {
    	// serviceAccountKeyFile is the filename containing a PEM-encoded private RSA key
    	// used to sign service account tokens.
    	ServiceAccountKeyFile string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 24 23:20:17 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top