Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for LC_MESSAGES (0.13 sec)

  1. src/cmd/go/testdata/mod/rsc.io_sampler_v1.99.99.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.1.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.0.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_sampler_v1.3.0.txt

    	"golang.org/x/text/language"
    )
    
    // DefaultUserPrefs returns the default user language preferences.
    // It consults the $LC_ALL, $LC_MESSAGES, and $LANG environment
    // variables, in that order.
    func DefaultUserPrefs() []language.Tag {
    	var prefs []language.Tag
    	for _, k := range []string{"LC_ALL", "LC_MESSAGES", "LANG"} {
    		if env := os.Getenv(k); env != "" {
    			prefs = append(prefs, language.Make(env))
    		}
    	}
    	return prefs
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 10 00:47:06 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  6. hack/update-translations.sh

        echo "Failed to update template.pot"
        exit 1
      fi
    fi
    
    if [[ "${fix_translations}" == "true" ]]; then
      echo "Fixing .po files"
      kube::util::ensure-temp-dir
      for PO_FILE in "${TRANSLATIONS}"/kubectl/*/LC_MESSAGES/k8s.po; do
        TMP="${KUBE_TEMP}/fix.po"
        if [[ "${PO_FILE}" =~ .*/default/.* || "${PO_FILE}" =~ .*/en_US/.*  ]]; then
          # mark obsolete, and set default values for english translations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

        public SearchResult<T> getCompilerMetaData(List<File> path, Action<? super CompilerExecSpec> configureAction) {
            DefaultCompilerExecSpec execSpec = new DefaultCompilerExecSpec();
            execSpec.environment("LC_MESSAGES", "C");
            configureAction.execute(execSpec);
    
            List<String> allArgs = ImmutableList.<String>builder().addAll(execSpec.args).addAll(compilerArgs()).build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.13.md

    - Added a new container based image for running e2e tests ([#69368](https://github.com/kubernetes/kubernetes/pull/69368), [@dims](https://github.com/dims))
    - The `LC_ALL` and `LC_MESSAGES` env vars can now be used to set desired locale for `kubectl` while keeping `LANG` unchanged. ([#69500](https://github.com/kubernetes/kubernetes/pull/69500), [@m1kola](https://github.com/m1kola))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top