Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for toidentifier (0.35 sec)

  1. doc/go_spec.html

    <p>
    A <i>qualified identifier</i> is an identifier qualified with a package name prefix.
    Both the package name and the identifier must not be
    <a href="#Blank_identifier">blank</a>.
    </p>
    
    <pre class="ebnf">
    QualifiedIdent = PackageName "." identifier .
    </pre>
    
    <p>
    A qualified identifier accesses an identifier in a different package, which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/net/http/h2_bundle.go

    	}
    	if fh.StreamID != 0 {
    		// SETTINGS frames always apply to a connection,
    		// never a single stream. The stream identifier for a
    		// SETTINGS frame MUST be zero (0x0).  If an endpoint
    		// receives a SETTINGS frame whose stream identifier
    		// field is anything other than 0x0, the endpoint MUST
    		// respond with a connection error (Section 5.4.1) of
    		// type PROTOCOL_ERROR.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // List of endpoints.
      repeated Endpoints items = 2;
    }
    
    // EnvFromSource represents the source of a set of ConfigMaps
    message EnvFromSource {
      // An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
      // +optional
      optional string prefix = 1;
    
      // The ConfigMap to select from
      // +optional
      optional ConfigMapEnvSource configMapRef = 2;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_EndpointsList
    }
    
    var map_EnvFromSource = map[string]string{
    	"":             "EnvFromSource represents the source of a set of ConfigMaps",
    	"prefix":       "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
    	"configMapRef": "The ConfigMap to select from",
    	"secretRef":    "The Secret to select from",
    }
    
    func (EnvFromSource) SwaggerDoc() map[string]string {
    	return map_EnvFromSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"uid": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // List of endpoints.
      repeated Endpoints items = 2;
    }
    
    // EnvFromSource represents the source of a set of ConfigMaps
    message EnvFromSource {
      // An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
      // +optional
      optional string prefix = 1;
    
      // The ConfigMap to select from
      // +optional
      optional ConfigMapEnvSource configMapRef = 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)
  7. pkg/apis/core/types.go

    type ServiceAccountTokenProjection struct {
    	// Audience is the intended audience of the token. A recipient of a token
    	// must identify itself with an identifier specified in the audience of the
    	// token, and otherwise should reject the token. The audience defaults to the
    	// identifier of the apiserver.
    	Audience string
    	// ExpirationSeconds is the requested duration of validity of the service
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // EnvFromSource represents the source of a set of ConfigMaps
    type EnvFromSource struct {
    	// An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.
    	// +optional
    	Prefix string `json:"prefix,omitempty" protobuf:"bytes,1,opt,name=prefix"`
    	// The ConfigMap to select from
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                          format: int64
                          minimum: 0
                          type: integer
                        reason:
                          description: reason contains a programmatic identifier indicating
                            the reason for the condition's last transition. Producers
                            of specific condition types may define expected values and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  }
                ],
                "description": "The ConfigMap to select from"
              },
              "prefix": {
                "description": "An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.",
                "type": "string"
              },
              "secretRef": {
                "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)
Back to top