Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Subtag (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/language/parse.go

    )
    
    // ValueError is returned by any of the parsing functions when the
    // input is well-formed but the respective subtag is not recognized
    // as a valid value.
    type ValueError interface {
    	error
    
    	// Subtag returns the subtag for which the error occurred.
    	Subtag() string
    }
    
    // Parse parses the given BCP 47 string and returns a valid Tag. If parsing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/parse.go

    		n = 8
    	}
    	return e.v[:n]
    }
    
    // Error implements the error interface.
    func (e ValueError) Error() string {
    	return fmt.Sprintf("language: subtag %q is well-formed but unknown", e.tag())
    }
    
    // Subtag returns the subtag for which the error occurred.
    func (e ValueError) Subtag() string {
    	return string(e.tag())
    }
    
    // scanner is used to scan BCP 47 tokens, which are separated by _ or -.
    type scanner struct {
    	b     []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func RegionalID(t Tag) (id ID, exact bool) {
    	return t.locale, t.full == nil
    }
    
    // LanguageTag returns t stripped of regional variant indicators.
    //
    // At the moment this means it is stripped of a regional and variant subtag "rg"
    // and "va" in the "u" extension.
    func (t Tag) LanguageTag() Tag {
    	if t.full == nil {
    		return Tag{language: t.language, locale: t.language}
    	}
    	tt := t.Tag()
    	tt.SetTypeForKey("rg", "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/language/match.go

    // result is deemed as good as its weakest link).
    // We define the following levels:
    //   Exact    - An exact match of a subtag, before adding likely subtags.
    //   MaxExact - An exact match of a subtag, after adding likely subtags.
    //              [See Note 2].
    //   High     - High level of mutual intelligibility between different subtag
    //              variants.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    	return sort.Search(len(imap), func(i int) bool {
    		return imap[i] >= key
    	})
    }
    
    type Language uint16
    
    // getLangID returns the langID of s if s is a canonical subtag
    // or langUnknown if s is not a canonical subtag.
    func getLangID(s []byte) (Language, error) {
    	if len(s) == 2 {
    		return getLangISO2(s)
    	}
    	return getLangISO3(s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/language/language.go

    	// Normalize legacy encodings. This includes legacy languages defined in
    	// CLDR as well as bibliographic codes defined in ISO-639.
    	Legacy
    	// Map the dominant language of a macro language group to the macro language
    	// subtag. For example cmn -> zh.
    	Macro
    	// The CLDR flag should be used if full compatibility with CLDR is required.
    	// There are a few cases where language.Tag may differ from CLDR. To follow all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/cryptobyte/asn1.go

    // tag and length bytes) into out, sets outTag to its tag, and advances.
    // It reports whether the read was successful.
    //
    // Tags greater than 30 are not supported (i.e. low-tag-number format only).
    func (s *String) ReadAnyASN1(out *String, outTag *asn1.Tag) bool {
    	return s.readASN1(out, outTag, true /* skip header */)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    	}
    }
    
    // ErrMissingLikelyTagsData indicates no information was available
    // to compute likely values of missing tags.
    var ErrMissingLikelyTagsData = errors.New("missing likely tags data")
    
    // addLikelySubtags sets subtags to their most likely value, given the locale.
    // In most cases this means setting fields for unknown values, but in some
    // cases it may alter a value.  It returns an ErrMissingLikelyTagsData error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/language/doc.go

    //	    // locale-specific service.
    //	}
    //
    // The Matcher's Match method can be used to match Tags directly.
    //
    // Matchers are aware of the intricacies of equivalence between languages, such
    // as deprecated subtags, legacy tags, macro languages, mutual
    // intelligibility between scripts and languages, and transparently passing
    // BCP 47 user configuration.
    // For instance, it will know that a reader of Bokmål Danish can read Norwegian
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/language/coverage.go

    	// Scripts returns the list of supported scripts.
    	Scripts() []Script
    
    	// Regions returns the list of supported regions.
    	Regions() []Region
    }
    
    var (
    	// Supported defines a Coverage that lists all supported subtags. Tags
    	// always returns nil.
    	Supported Coverage = allSubtags{}
    )
    
    // TODO:
    // - Support Variants, numbering systems.
    // - CLDR coverage levels.
    // - Set of common tags defined in this package.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top