Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for Latin (0.04 sec)

  1. pkg/ctrlz/assets/static/css/fonts.css

      src: local('Roboto Thin Italic'), local('Roboto-ThinItalic'), url(https://fonts.gstatic.com/s/roboto/v19/KFOiCnqEu92Fr1Mu51QrEz8dL-vwnYh2eg.woff2) format('woff2');
      unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
    }
    /* latin-ext */
    @font-face {
      font-family: 'Roboto';
      font-style: italic;
      font-weight: 100;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  2. src/unicode/letter_test.go

    	// This package has Latin-1-specific optimizations, so we test all of
    	// Latin-1 and representative non-Latin-1 values in the character
    	// categories covered by IsGraphic, etc.
    	nonLatin1 := []uint32{
    		// Lu: LATIN CAPITAL LETTER A WITH MACRON
    		0x0100,
    		// Ll: LATIN SMALL LETTER A WITH MACRON
    		0x0101,
    		// Lt: LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON
    		0x01C5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:46:03 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    	// # 0049; 0069 0307; 0049; 0049; lt More_Above; # LATIN CAPITAL LETTER I
    	// # 004A; 006A 0307; 004A; 004A; lt More_Above; # LATIN CAPITAL LETTER J
    	// # 012E; 012F 0307; 012E; 012E; lt More_Above; # LATIN CAPITAL LETTER I WITH OGONEK
    	// # 00CC; 0069 0307 0300; 00CC; 00CC; lt; # LATIN CAPITAL LETTER I WITH GRAVE
    	// # 00CD; 0069 0307 0301; 00CD; 00CD; lt; # LATIN CAPITAL LETTER I WITH ACUTE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. src/unicode/letter.go

    	MaxRune         = '\U0010FFFF' // Maximum valid Unicode code point.
    	ReplacementChar = '\uFFFD'     // Represents invalid code points.
    	MaxASCII        = '\u007F'     // maximum ASCII value.
    	MaxLatin1       = '\u00FF'     // maximum Latin-1 value.
    )
    
    // RangeTable defines a set of Unicode code points by listing the ranges of
    // code points within the set. The ranges are listed in two slices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/language.go

    		tag.RemakeString()
    		return makeTag(tag), nil
    	}
    	return t, nil
    
    }
    
    // Confidence indicates the level of certainty for a given return value.
    // For example, Serbian may be written in Cyrillic or Latin script.
    // The confidence level indicates whether a value was explicitly specified,
    // whether it is typically the only possible value, or whether there is
    // an ambiguity.
    type Confidence int
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/html/template/js.go

    	'\\': `\\`,
    	']':  `\]`,
    	'^':  `\^`,
    	'{':  `\{`,
    	'|':  `\|`,
    	'}':  `\}`,
    }
    
    // isJSIdentPart reports whether the given rune is a JS identifier part.
    // It does not handle all the non-Latin letters, joiners, and combining marks,
    // but it does handle every codepoint that can occur in a numeric literal or
    // a keyword.
    func isJSIdentPart(r rune) bool {
    	switch {
    	case r == '$':
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    // 4) simpleLetterEqualFold, no specials, no non-letters.
    //
    // The letters S and K are special because they map to 3 runes, not just 2:
    //  * S maps to s and to U+017F 'ſ' Latin small letter long s
    //  * k maps to K and to U+212A 'K' Kelvin sign
    // See http://play.golang.org/p/tTxjOc0OGo
    //
    // The returned function is specialized for matching against s and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  8. src/strconv/quote.go

    // IsPrint reports whether the rune is defined as printable by Go, with
    // the same definition as [unicode.IsPrint]: letters, numbers, punctuation,
    // symbols and ASCII space.
    func IsPrint(r rune) bool {
    	// Fast check for Latin-1
    	if r <= 0xFF {
    		if 0x20 <= r && r <= 0x7E {
    			// All the ASCII is printable from space through DEL-1.
    			return true
    		}
    		if 0xA1 <= r && r <= 0xFF {
    			// Similarly for ¡ through ÿ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top