Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,312 for Tstruct (0.16 sec)

  1. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    	"k8s.io/utils/pointer"
    )
    
    // RecommendedDefaultPersistentVolumeBinderControllerConfiguration defaults a pointer to a
    // PersistentVolumeBinderControllerConfiguration struct. This will set the recommended default
    // values, but they may be subject to change between API versions. This function
    // is intentionally not registered in the scheme as a "normal" `SetDefaults_Foo`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/template_test.go

    	invalidTmpl2 = "{{ !foobar }}"
    )
    
    func TestParseTemplate(t *testing.T) {
    	var tmplTests = []struct {
    		name        string
    		template    string
    		data        interface{}
    		output      string
    		errExpected bool
    	}{
    		{
    			name:     "should parse a valid template and set the right values",
    			template: validTmpl,
    			data: struct{ ImageRepository, Arch string }{
    				ImageRepository: "registry.k8s.io",
    				Arch:            "amd64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/types.go

    // 3. deny by default
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    // about who the rule applies to or which namespace the rule applies to.
    type PolicyRule struct {
    	// Verbs is a list of Verbs that apply to ALL the ResourceKinds contained in this rule. '*' represents all verbs.
    	// +listType=atomic
    	Verbs []string `json:"verbs" protobuf:"bytes,1,rep,name=verbs"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/config-versions.go

    	"github.com/minio/pkg/v3/quick"
    )
    
    // FileLogger is introduced to workaround the dependency about logrus
    type FileLogger struct {
    	Enable   bool   `json:"enable"`
    	Filename string `json:"filename"`
    }
    
    // ConsoleLogger is introduced to workaround the dependency about logrus
    type ConsoleLogger struct {
    	Enable bool `json:"enable"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. cmd/object-api-errors.go

    type InvalidETag struct{}
    
    func (e InvalidETag) Error() string {
    	return "etag of the object has changed"
    }
    
    // BackendDown is returned for network errors
    type BackendDown struct {
    	Err string
    }
    
    func (e BackendDown) Error() string {
    	return e.Err
    }
    
    // NotImplemented If a feature is not implemented
    type NotImplemented struct {
    	Message string
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    type PodDNSConfigOption struct {
    	// Required.
    	Name string
    	// +optional
    	Value *string
    }
    
    // PodIP represents a single IP address allocated to the pod.
    type PodIP struct {
    	// IP is the IP address assigned to the pod
    	IP string
    }
    
    // HostIP represents a single IP address allocated to the host.
    type HostIP struct {
    	// IP is the IP address assigned to the host
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. src/cmd/internal/goobj/objfile.go

    	"unsafe"
    )
    
    // New object file format.
    //
    //    Header struct {
    //       Magic       [...]byte   // "\x00go120ld"
    //       Fingerprint [8]byte
    //       Flags       uint32
    //       Offsets     [...]uint32 // byte offset of each block below
    //    }
    //
    //    Strings [...]struct {
    //       Data [...]byte
    //    }
    //
    //    Autolib  [...]struct { // imported packages (for file loading)
    //       Pkg         string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/sync/atomic/atomic_test.go

    // The loop over power-of-two values is meant to
    // ensure that the operations apply to the full word size.
    // The struct fields x.before and x.after check that the
    // operations do not extend past the full word size.
    
    const (
    	magic32 = 0xdedbeef
    	magic64 = 0xdeddeadbeefbeef
    )
    
    func TestSwapInt32(t *testing.T) {
    	var x struct {
    		before int32
    		i      int32
    		after  int32
    	}
    	x.before = magic32
    	x.after = magic32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/types.go

    // object IS NOT uploaded to the kubeadm-config ConfigMap in the cluster, only the
    // ClusterConfiguration is.
    type InitConfiguration struct {
    	metav1.TypeMeta
    
    	// ClusterConfiguration holds the cluster-wide information, and embeds that struct (which can be (un)marshalled separately as well)
    	// When InitConfiguration is marshalled to bytes in the external version, this information IS NOT preserved (which can be seen from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta4/types.go

    type APIServer struct {
    	ControlPlaneComponent `json:",inline"`
    
    	// CertSANs sets extra Subject Alternative Names for the API Server signing cert.
    	// +optional
    	CertSANs []string `json:"certSANs,omitempty"`
    }
    
    // DNS defines the DNS addon that should be used in the cluster
    type DNS struct {
    	// ImageMeta allows to customize the image used for the DNS addon
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top