Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for parsable (0.2 sec)

  1. doc/go_spec.html

    never used.
    </p>
    
    <h3 id="Short_variable_declarations">Short variable declarations</h3>
    
    <p>
    A <i>short variable declaration</i> uses the syntax:
    </p>
    
    <pre class="ebnf">
    ShortVarDecl = IdentifierList ":=" ExpressionList .
    </pre>
    
    <p>
    It is shorthand for a regular <a href="#Variable_declarations">variable declaration</a>
    with initializer expressions but no types:
    </p>
    
    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/cmd/compile/internal/ssagen/ssa.go

    	}
    	addr := s.addr(tmp)
    	return tmp, addr
    }
    
    // variable returns the value of a variable at the current location.
    func (s *state) variable(n ir.Node, t *types.Type) *ssa.Value {
    	v := s.vars[n]
    	if v != nil {
    		return v
    	}
    	v = s.fwdVars[n]
    	if v != nil {
    		return v
    	}
    
    	if s.curBlock == s.f.Entry {
    		// No variable should be live at entry.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. ChangeLog.md

    - [`KT-65478`](https://youtrack.jetbrains.com/issue/KT-65478) JVM: Change inlined variable naming format
    - [`KT-64702`](https://youtrack.jetbrains.com/issue/KT-64702) Upper bound of type parameter is ignored when capturing of in-projection appears in out position
    - [`KT-60274`](https://youtrack.jetbrains.com/issue/KT-60274) K2: builder inference works through a delegated local variable inside builder argument
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// of whether the variable exists or not.
    	// +optional
    	Command []string
    	// Optional: The container image's cmd is used if this is not provided; cannot be updated.
    	// Variable references $(VAR_NAME) are expanded using the container's environment.  If a variable
    	// cannot be resolved, the reference in the input string will be unchanged.  Double $$ are reduced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_EnvVar = map[string]string{
    	"":          "EnvVar represents an environment variable present in a Container.",
    	"name":      "Name of the environment variable. Must be a C_IDENTIFIER.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // EnvVar represents an environment variable present in a Container.
    message EnvVar {
      // Name of the environment variable. Must be a C_IDENTIFIER.
      optional string name = 1;
    
      // Variable references $(VAR_NAME) are expanded
      // using the previously defined environment variables in the container and
      // any service environment variables. If a variable cannot be resolved,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      </mime-type>
    
      <mime-type type="image/x-portable-anymap">
        <acronym>PNM</acronym>
        <_comment>Portable Any Map</_comment>
        <glob pattern="*.pnm" />
      </mime-type>
    
      <mime-type type="image/x-portable-bitmap">
        <sub-class-of type="image/x-portable-anymap"/>
        <acronym>PBM</acronym>
        <_comment>Portable Bit Map</_comment>
        <magic priority="50">
    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.14.md

        * If you are running E2E tests which require SSH keys and you utilize environment variables to override their location, you may need to modify the environment variable set. On all providers the environment variable override can now be either an absolute path to the key or a relative path (relative to ~/.ssh). Specifically the changes are:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // EnvVar represents an environment variable present in a Container.
    message EnvVar {
      // Name of the environment variable. Must be a C_IDENTIFIER.
      optional string name = 1;
    
      // Variable references $(VAR_NAME) are expanded
      // using the previously defined environment variables in the container and
      // any service environment variables. If a variable cannot be resolved,
    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

    }
    
    // EnvVar represents an environment variable present in a Container.
    type EnvVar struct {
    	// Name of the environment variable. Must be a C_IDENTIFIER.
    	Name string `json:"name" protobuf:"bytes,1,opt,name=name"`
    
    	// Optional: no more than one of the following may be specified.
    
    	// Variable references $(VAR_NAME) are expanded
    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