Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for isStandard (0.32 sec)

  1. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"":          "PodExecOptions is the query options to a Pod's remote exec call.",
    	"stdin":     "Redirect the standard input stream of the pod for this call. Defaults to false.",
    	"stdout":    "Redirect the standard output stream of the pod for this call.",
    	"stderr":    "Redirect the standard error stream of the pod for this call.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/generated.proto

    message PodExecOptions {
      // Redirect the standard input stream of the pod for this call.
      // Defaults to false.
      // +optional
      optional bool stdin = 1;
    
      // Redirect the standard output stream of the pod for this call.
      // +optional
      optional bool stdout = 2;
    
      // Redirect the standard error stream of the pod for this call.
      // +optional
      optional bool stderr = 3;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// Redirect the standard input stream of the pod for this call.
    	// Defaults to false.
    	// +optional
    	Stdin bool `json:"stdin,omitempty" protobuf:"varint,1,opt,name=stdin"`
    
    	// Redirect the standard output stream of the pod for this call.
    	// +optional
    	Stdout bool `json:"stdout,omitempty" protobuf:"varint,2,opt,name=stdout"`
    
    	// Redirect the standard error stream of the pod for this call.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
                  }
                ],
                "default": {},
                "description": "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata"
              },
              "spec": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// This is used as a hint for implementations to offer richer behavior for protocols that they understand.
    	// This field follows standard Kubernetes label syntax.
    	// Valid values are either:
    	//
    	// * Un-prefixed protocol names - reserved for IANA standard service names (as per
    	// RFC-6335 and https://www.iana.org/assignments/service-names).
    	//
    	// * Kubernetes-defined prefixed names:
    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. prow/config/calico.yaml

                    description: Communities is a list of BGP community values and their
                      arbitrary names for tagging routes.
                    items:
                      description: Community contains standard or large community value
                        and its name.
                      properties:
                        name:
                          description: Name given to community value.
                          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    			return append(allErrs, field.Invalid(fldPath, value, "must be a standard resource for containers"))
    		}
    	} else if !helper.IsNativeResource(value) {
    		if !helper.IsExtendedResourceName(value) {
    			return append(allErrs, field.Invalid(fldPath, value, "doesn't follow extended resource name standard"))
    		}
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. docs/en/docs/release-notes.md

    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    ### Refactors
    
    * 🔧 Add configs and setup for `fastapi-slim` including optional extras `fastapi-slim[standard]`, and `fastapi` including by default the same `standard` extras. PR [#11503](https://github.com/tiangolo/fastapi/pull/11503) by [@tiangolo](https://github.com/tiangolo).
    
    ## 0.110.3
    
    ### Docs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  9. doc/go_spec.html

    unicode_digit  = /* a Unicode code point categorized as "Number, decimal digit" */ .
    </pre>
    
    <p>
    In <a href="https://www.unicode.org/versions/Unicode8.0.0/">The Unicode Standard 8.0</a>,
    Section 4.5 "General Category" defines a set of character categories.
    Go treats all characters in any of the Letter categories Lu, Ll, Lt, Lm, or Lo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  10. CHANGELOG/CHANGELOG-1.27.md

    - Remove `kubernetes.io/grpc` standard appProtocol ([#116866](https://github.com/kubernetes/kubernetes/pull/116866), [@LiorLieberman](https://github.com/LiorLieberman)) [SIG API Machinery and Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top