Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 643 for type_ (0.03 sec)

  1. src/mime/testdata/test.types

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 239 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    }
    
    // Arg represents an argument with a name and a value.
    type Arg struct {
    	Name  string `json:"name"`
    	Value string `json:"value"`
    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	corev1.EnvVar `json:",inline"`
    }
    
    // EncryptionAlgorithmType can define an asymmetric encryption algorithm type.
    type EncryptionAlgorithmType string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/types.go

    // BootstrapToken represents information for the bootstrap token output produced by kubeadm
    type BootstrapToken struct {
    	metav1.TypeMeta
    
    	bootstraptokenv1.BootstrapToken
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // Images represents information for the output produced by 'kubeadm config images list'
    type Images struct {
    	metav1.TypeMeta
    
    	Images []string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:01:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pkg/controller/endpointslicemirroring/config/types.go

    */
    
    package config
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // EndpointSliceMirroringControllerConfiguration contains elements describing
    // EndpointSliceMirroringController.
    type EndpointSliceMirroringControllerConfiguration struct {
    	// mirroringConcurrentServiceEndpointSyncs is the number of service endpoint
    	// syncing operations that will be done concurrently. Larger number = faster
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 19:43:33 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  5. pkg/apis/storage/types.go

    type CSIDriverList struct {
    	metav1.TypeMeta
    
    	// Standard list metadata
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// items is the list of CSIDriver
    	Items []CSIDriver
    }
    
    // CSIDriverSpec is the specification of a CSIDriver.
    type CSIDriverSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. pkg/apis/storagemigration/types.go

    	// Indicates that the migration has failed.
    	MigrationFailed MigrationConditionType = "Failed"
    )
    
    // Describes the state of a migration at a certain point.
    type MigrationCondition struct {
    	// Type of the condition.
    	Type MigrationConditionType
    	// Status of the condition, one of True, False, Unknown.
    	Status corev1.ConditionStatus
    	// The last time this condition was updated.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/config/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package config
    
    // CronJobControllerConfiguration contains elements describing the
    // CronJobControllerV2.
    type CronJobControllerConfiguration struct {
    	// ConcurrentCronJobSyncs is the number of cron job objects that are
    	// allowed to sync concurrently. Larger number = more responsive jobs,
    	// but more CPU (and network) load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 10 22:32:06 UTC 2020
    - 934 bytes
    - Viewed (0)
  8. pkg/controller/apis/config/types.go

    )
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // KubeControllerManagerConfiguration contains elements describing kube-controller manager.
    type KubeControllerManagerConfiguration struct {
    	metav1.TypeMeta
    
    	// Generic holds configuration for a generic controller-manager
    	Generic cmconfig.GenericControllerManagerConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 20:41:50 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    }
    
    // PodFailurePolicyOnPodConditionsPattern describes a pattern for matching
    // an actual pod condition type.
    type PodFailurePolicyOnPodConditionsPattern struct {
    	// Specifies the required Pod condition type. To match a pod condition
    	// it is required that specified type equals the pod condition type.
    	Type api.PodConditionType
    	// Specifies the required Pod condition status. To match a pod condition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/apis/imagepolicy/types.go

    type ImageReview struct {
    	metav1.TypeMeta
    	metav1.ObjectMeta
    
    	// Spec holds information about the pod being evaluated
    	Spec ImageReviewSpec
    
    	// Status is filled in by the backend and indicates whether the pod should be allowed.
    	Status ImageReviewStatus
    }
    
    // ImageReviewSpec is a description of the pod creation request.
    type ImageReviewSpec struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 08:53:21 UTC 2019
    - 2.6K bytes
    - Viewed (0)
Back to top