Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Starling (0.23 sec)

  1. doc/go1.22.html

      <dd>
        <p><!-- CL 539615 -->
          When executing a CGI process, the <code>PATH_INFO</code> variable is now
          always set to the empty string or a value starting with a <code>/</code> character,
          as required by RFC 3875. It was previously possible for some combinations of
          <a href="/pkg/net/http/cgi#Handler.Root"><code>Handler.Root</code></a>
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    \\   U+005C backslash
    \'   U+0027 single quote  (valid escape only within rune literals)
    \"   U+0022 double quote  (valid escape only within string literals)
    </pre>
    
    <p>
    All other sequences starting with a backslash are illegal inside rune literals.
    </p>
    <pre class="ebnf">
    rune_lit         = "'" ( unicode_value | byte_value ) "'" .
    unicode_value    = unicode_char | little_u_value | big_u_value | escaped_char .
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  3. doc/asm.html

    </p>
    
    <p>
    Most hand-written assembly files do not include the full package path
    in symbol names, because the linker inserts the package path of the current
    object file at the beginning of any name starting with a period:
    in an assembly source file within the math/rand package implementation,
    the package's Int function can be referred to as <code>·Int</code>.
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  4. doc/go_spec.html

    <code>iota</code> represents successive untyped integer <a href="#Constants">
    constants</a>. Its value is the index of the respective <a href="#ConstSpec">ConstSpec</a>
    in that constant declaration, starting at zero.
    It can be used to construct a set of related constants:
    </p>
    
    <pre>
    const (
    	c0 = iota  // c0 == 0
    	c1 = iota  // c1 == 1
    	c2 = iota  // c2 == 2
    )
    
    const (
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top