Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for space1 (0.29 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              },
              "namespace": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    	if rule1.Comment == nil || rule2.Comment == nil {
    		return false
    	}
    	name1, name2 := rule1.Comment.Value, rule2.Comment.Value
    
    	// The service name is the comment up to the first space or colon
    	i := strings.IndexAny(name1, " :")
    	if i != -1 {
    		name1 = name1[:i]
    	}
    	i = strings.IndexAny(name2, " :")
    	if i != -1 {
    		name2 = name2[:i]
    	}
    
    	return name1 < name2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  3. docs/en/docs/release-notes.md

    * Add official Microsoft project generator for [serving spaCy with FastAPI and Azure Cognitive Skills](https://github.com/microsoft/cookiecutter-spacy-fastapi) to [Project Generators](https://fastapi.tiangolo.com/project-generation/). PR [#1390](https://github.com/tiangolo/fastapi/pull/1390) by [@kabirkhan](https://github.com/kabirkhan).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
      // namespace defines the space within which the secret name must be unique.
      // +optional
      optional string namespace = 2;
    }
    
    // Adapts a Secret into a volume.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    // in any namespace
    type SecretReference struct {
    	// Name is unique within a namespace to reference a secret resource.
    	// +optional
    	Name string
    	// Namespace defines the space within which the secret name must be unique.
    	// +optional
    	Namespace string
    }
    
    // CephFSPersistentVolumeSource represents a Ceph Filesystem mount that lasts the lifetime of a pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"name":      "name is unique within a namespace to reference a secret resource.",
    	"namespace": "namespace defines the space within which the secret name must be unique.",
    }
    
    func (SecretReference) SwaggerDoc() map[string]string {
    	return map_SecretReference
    }
    
    var map_SecretVolumeSource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
      <mime-type type="image/vnd.dxf;format=ascii">
        <sub-class-of type="image/vnd.dxf"/>
        <_comment>AutoCAD DXF in ASCII Text form</_comment>
        <magic priority="50">
          <!-- Variable number of spaces or possibly creator tool before the code groups -->
          <!-- allow 999 (comments) before section -->
          <match type="regex" value="(999\r?\n[^\r\n]{0,64}\\s+)?0\r?\nSECTION\r?\n" offset="0:32">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

      * You can now set container requests, container limits, and node allocatable reservations for the new `ephemeral-storage` resource.
    
      * The `ephemeral-storage` resource includes all the disk space a container might consume with container overlay or scratch.
    
    * [alpha] Mount namespace propagation
    
      * The `VolumeMount.Propagation` field for `VolumeMount` in pod containers is now available.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    // +structType=atomic
    message SecretReference {
      // name is unique within a namespace to reference a secret resource.
      // +optional
      optional string name = 1;
    
      // namespace defines the space within which the secret name must be unique.
      // +optional
      optional string namespace = 2;
    }
    
    // Adapts a Secret into a volume.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types.go

    type SecretReference struct {
    	// name is unique within a namespace to reference a secret resource.
    	// +optional
    	Name string `json:"name,omitempty" protobuf:"bytes,1,opt,name=name"`
    	// namespace defines the space within which the secret name must be unique.
    	// +optional
    	Namespace string `json:"namespace,omitempty" protobuf:"bytes,2,opt,name=namespace"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top