Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for spring (0.34 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    func (x *CNIConfig) GetPullPolicy() string {
    	if x != nil {
    		return x.PullPolicy
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniBinDir() string {
    	if x != nil {
    		return x.CniBinDir
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniConfDir() string {
    	if x != nil {
    		return x.CniConfDir
    	}
    	return ""
    }
    
    func (x *CNIConfig) GetCniConfFileName() string {
    	if x != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "user": {
                "description": "user to map volume access to Defaults to serivceaccount user",
                "type": "string"
              },
              "volume": {
                "default": "",
                "description": "volume is a string that references an already created Quobyte volume by name.",
                "type": "string"
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/ssagen/ssa.go

    	// only PtrSize.
    	stkalign int64
    
    	log bool // print ssa debug to the stdout
    }
    
    // StringData returns a symbol which
    // is the data component of a global string constant containing s.
    func (e *ssafn) StringData(s string) *obj.LSym {
    	if aux, ok := e.strings[s]; ok {
    		return aux
    	}
    	if e.strings == nil {
    		e.strings = make(map[string]*obj.LSym)
    	}
    	data := staticdata.StringSym(e.curfn.Pos(), s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - OIDC authentication will now fail if the username asserted based on a CEL expression config is the empty string.  Previously the request would be authenticated with the username set to the empty string. ([#123568](https://github.com/kubernetes/kubernetes/pull/123568), [@enj](https://github.com/enj))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // For vectors, shuffle values by sorting instead of the obvious
        // Fisher-Yates algorithm. Fisher-Yates is simple to implement and correct,
        // but not easily parallelizable. For a sufficiently parallel architecture,
        // it is faster to sort many times, than Fisher-Yates shuffle once.
        if (input_rank == 1) {
          // Shuffle values by assigning each value a random key and sorting the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top