Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lowercased (0.23 sec)

  1. .github/PULL_REQUEST_TEMPLATE

      + The package name goes before the colon
      + The part after the colon uses the verb tense + phrase that completes the blank in,
        "This change modifies Go to ___________"
      + Lowercase verb after the colon
      + No trailing period
      + Keep the title as short as possible. ideally under 76 characters or shorter
    + No Markdown
    + The first PR comment (this one) is wrapped at 76 characters, unless it's
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 02:07:46 GMT 2018
    - 1.2K bytes
    - Viewed (0)
  2. src/bufio/bufio_test.go

    	r13 := new(rot13Reader)
    	r13.r = r
    	return r13
    }
    
    func (r13 *rot13Reader) Read(p []byte) (int, error) {
    	n, err := r13.r.Read(p)
    	for i := 0; i < n; i++ {
    		c := p[i] | 0x20 // lowercase byte
    		if 'a' <= c && c <= 'm' {
    			p[i] += 13
    		} else if 'n' <= c && c <= 'z' {
    			p[i] -= 13
    		}
    	}
    	return n, err
    }
    
    // Call ReadByte to accumulate the text of a file
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Feb 10 18:56:01 GMT 2023
    - 51.5K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg time, type Time struct
    pkg time, type Timer struct
    pkg time, type Timer struct, C <-chan Time
    pkg time, type Weekday int
    pkg time, var Local *Location
    pkg time, var UTC *Location
    pkg unicode, const LowerCase ideal-int
    pkg unicode, const MaxASCII ideal-char
    pkg unicode, const MaxCase ideal-int
    pkg unicode, const MaxLatin1 ideal-char
    pkg unicode, const MaxRune ideal-char
    pkg unicode, const ReplacementChar ideal-char
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. doc/go_spec.html

    operators, in increasing precedence:
    </p>
    <pre class="grammar">
    |   alternation
    ()  grouping
    []  option (0 or 1 times)
    {}  repetition (0 to n times)
    </pre>
    
    <p>
    Lowercase production names are used to identify lexical (terminal) tokens.
    Non-terminals are in CamelCase. Lexical tokens are enclosed in
    double quotes <code>""</code> or back quotes <code>``</code>.
    </p>
    
    <p>
    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)
  5. api/go1.1.txt

    pkg time, method (*Timer) Reset(Duration) bool
    pkg time, method (Time) Round(Duration) Time
    pkg time, method (Time) Truncate(Duration) Time
    pkg time, method (Time) YearDay() int
    pkg unicode, const LowerCase = 1
    pkg unicode, const MaxASCII = 127
    pkg unicode, const MaxCase = 3
    pkg unicode, const MaxLatin1 = 255
    pkg unicode, const MaxRune = 1114111
    pkg unicode, const ReplacementChar = 65533
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top