Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LanguageID (0.15 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

            if (optionEl.getAttribute("data-lang") === languageId) {
              optionEl.classList.add("selected");
            } else {
              optionEl.classList.remove("selected");
            }
          });
    
        [].slice
          .call(document.querySelectorAll(".multi-language-text"))
          .forEach(function (el) {
            if (!el.classList.contains("lang-" + languageId)) {
              el.classList.add("hidden");
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/testFixtures/groovy/org/gradle/test/fixtures/plugin/AbstractLanguagePluginSpec.groovy

            when:
            dsl {
                apply plugin: pluginClass
            }
    
            then:
            def transform = realize("languageTransforms").find { it.languageName == languageId }
    
            transform != null
            transform.sourceSetType == languageSourceSet
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func nextToken(s string) (t, tail string) {
    	p := strings.Index(s[1:], "-")
    	if p == -1 {
    		return s[1:], ""
    	}
    	p++
    	return s[1:p], s[p:]
    }
    
    // LanguageID returns an index, where 0 <= index < NumCompactTags, for tags
    // for which data exists in the text repository.The index will change over time
    // and should not be stored in persistent storage. If t does not match a compact
    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/language.go

    // index, exact will be false and the compact index will be returned for the
    // first match after repeatedly taking the Parent of t.
    func CompactIndex(t Tag) (index int, exact bool) {
    	id, exact := compact.LanguageID(compact.Tag(t))
    	return int(id), exact
    }
    
    var root = language.Tag{}
    
    // Base is an ISO 639 language code, used for encoding the base language
    // of a language tag.
    type Base struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top