Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for String4 (0.2 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. pkg/proxy/iptables/proxier_test.go

    				// anything (except KUBE-NODEPORTS) goes after KUBE-SERVICES
    				return false
    			case strings.HasPrefix(string(table.Chains[i].Name), "KUBE-") && !strings.HasPrefix(string(table.Chains[j].Name), "KUBE-"):
    				// KUBE-* comes before non-KUBE-*
    				return true
    			case !strings.HasPrefix(string(table.Chains[i].Name), "KUBE-") && strings.HasPrefix(string(table.Chains[j].Name), "KUBE-"):
    				// non-KUBE-* goes after KUBE-*
    				return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    }
    
    func (v validationMatch) matches(err *field.Error) bool {
    	return err.Type == v.errorType && err.Field == v.path.String() && strings.Contains(err.Error(), v.containsString)
    }
    
    func (v validationMatch) contains(s string) validationMatch {
    	v.containsString = s
    	return v
    }
    
    func strPtr(s string) *string { return &s }
    
    func TestValidateCustomResourceDefinition(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                      properties:
                        action:
                          type: string
                        cidr:
                          type: string
                        interface:
                          type: string
                        matchOperator:
                          type: string
                        source:
                          type: string
                      required:
                      - action
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    func (e http2duplicatePseudoHeaderError) Error() string {
    	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)
  6. 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)
  7. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (AppArmorProfile) SwaggerDoc() map[string]string {
    	return map_AppArmorProfile
    }
    
    var map_AttachedVolume = map[string]string{
    	"":           "AttachedVolume describes a volume attached to a node",
    	"name":       "Name of the attached volume",
    	"devicePath": "DevicePath represents the device path where the volume should be available",
    }
    
    func (AttachedVolume) SwaggerDoc() map[string]string {
    	return map_AttachedVolume
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %1 = "tf.Const"() {value = dense<"Condition x == y did not hold element-wise:"> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
      %2 = "tf.Const"() {value = dense<"x (WhitespaceTokenize/RaggedConcat/RaggedFromTensor/Const:0) = "> : tensor<!tf_type.string>} : () -> tensor<!tf_type.string>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// Registry represents a single or multiple Quobyte Registry services
    	// specified as a string as host:port pair (multiple entries are separated with commas)
    	// which acts as the central registry for volumes
    	Registry string
    
    	// Volume is a string that references an already created Quobyte volume by name.
    	Volume string
    
    	// Defaults to false (read/write). ReadOnly here will force
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional string initiatorName = 12;
    }
    
    // Maps a string key to a path within a volume.
    message KeyToPath {
      // key is the key to project.
      optional string key = 1;
    
      // path is the relative path of the file to map the key to.
      // May not be an absolute path.
      // May not contain the path element '..'.
      // May not start with the string '..'.
      optional string path = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top