Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 41 for spring (3 sec)

  1. pkg/apis/core/validation/validation.go

    }
    
    func GetVolumeMountMap(mounts []core.VolumeMount) map[string]string {
    	volmounts := make(map[string]string)
    
    	for _, mnt := range mounts {
    		volmounts[mnt.Name] = mnt.MountPath
    	}
    
    	return volmounts
    }
    
    func GetVolumeDeviceMap(devices []core.VolumeDevice) map[string]string {
    	volDevices := make(map[string]string)
    
    	for _, dev := range devices {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go

    }
    func (this *ApplyOptions) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ApplyOptions{`,
    		`DryRun:` + fmt.Sprintf("%v", this.DryRun) + `,`,
    		`Force:` + fmt.Sprintf("%v", this.Force) + `,`,
    		`FieldManager:` + fmt.Sprintf("%v", this.FieldManager) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *Condition) String() string {
    	if this == nil {
    		return "nil"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 281.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CustomResourceDefinitionCondition{`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go

    		`}`,
    	}, "")
    	return s
    }
    func (this *CustomResourceColumnDefinition) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&CustomResourceColumnDefinition{`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 244.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Deployment{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v1.ObjectMeta", 1), `&`, ``, 1) + `,`,
    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "DeploymentSpec", "DeploymentSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (this *ResourceClaim) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&ResourceClaim{`,
    		`ObjectMeta:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ObjectMeta), "ObjectMeta", "v11.ObjectMeta", 1), `&`, ``, 1) + `,`,
    		`Spec:` + strings.Replace(strings.Replace(this.Spec.String(), "ResourceClaimSpec", "ResourceClaimSpec", 1), `&`, ``, 1) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	return fmt.Sprintf("duplicate pseudo-header %q", string(e))
    }
    
    type http2headerFieldNameError string
    
    func (e http2headerFieldNameError) Error() string {
    	return fmt.Sprintf("invalid header field name %q", string(e))
    }
    
    type http2headerFieldValueError string
    
    func (e http2headerFieldValueError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    </p>
    
    <h3 id="String_types">String types</h3>
    
    <p>
    A <i>string type</i> represents the set of string values.
    A string value is a (possibly empty) sequence of bytes.
    The number of bytes is called the length of the string and is never negative.
    Strings are immutable: once created,
    it is impossible to change the contents of a string.
    The predeclared string type is <code>string</code>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  9. pkg/apis/core/v1/zz_generated.conversion.go

    	} else {
    		out.TTY = false
    	}
    	if values, ok := map[string][]string(*in)["container"]; ok && len(values) > 0 {
    		if err := runtime.Convert_Slice_string_To_string(&values, &out.Container, s); err != nil {
    			return err
    		}
    	} else {
    		out.Container = ""
    	}
    	if values, ok := map[string][]string(*in)["command"]; ok && len(values) > 0 {
    		out.Command = *(*[]string)(unsafe.Pointer(&values))
    	} else {
    		out.Command = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    addDefaults:i,matchUtilities:e,theme:t})=>{i("border-spacing",{"--tw-border-spacing-x":0,"--tw-border-spacing-y":0}),e({"border-spacing":r=>({"--tw-border-spacing-x":r,"--tw-border-spacing-y":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-x":r=>({"--tw-border-spacing-x":r,"@defaults border-spacing":{},"border-spacing":"var(--tw-border-spacing-x) var(--tw-border-spacing-y)"}),"border-spacing-y":r=>({"--tw-border-spacing-y":r,"@defaults...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top