Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 408 for alocale (0.59 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/local.txt

    Jinseong Jeon <******@****.***> 1701411264 -0800
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 21 15:34:34 UTC 2023
    - 140 bytes
    - Viewed (0)
  2. releasenotes/notes/auto-allocate-dns.yaml

    John Howard <******@****.***> 1607394502 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 08 02:28:22 UTC 2020
    - 325 bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/svn.go

    	// the user's locale settings either — that could impact error messages, and
    	// we don't know what locales the user has available or what LC_* variables
    	// their platform supports.
    	//
    	// Instead, we'll do a two-pass export: first we'll run 'svn list' to get the
    	// canonical filenames, then we'll 'svn export' and look for those filenames
    	// in the local filesystem. (If there is an encoding problem at that point, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 02:47:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  4. src/test/java/jcifs/tests/NamingTest.java

    import java.net.UnknownHostException;
    import java.nio.ByteBuffer;
    import java.nio.charset.Charset;
    import java.nio.charset.UnsupportedCharsetException;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Properties;
    
    import org.junit.Assume;
    import org.junit.Ignore;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.Parameterized;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Jun 06 10:48:05 UTC 2020
    - 7K bytes
    - Viewed (0)
  5. cmd/local-locker_gen_test.go

    Klaus Post <******@****.***> 1708383286 -0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/tags.go

    	Catalan              Tag = Tag{language: caIndex, locale: caIndex}
    	Czech                Tag = Tag{language: csIndex, locale: csIndex}
    	Danish               Tag = Tag{language: daIndex, locale: daIndex}
    	German               Tag = Tag{language: deIndex, locale: deIndex}
    	Greek                Tag = Tag{language: elIndex, locale: elIndex}
    	English              Tag = Tag{language: enIndex, locale: enIndex}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/local.ir.txt

    Yan Zhulanow <******@****.***> 1692687376 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 987 bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java

            assertFalse(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.JAPANESE));
            assertFalse(labelTypeHelper.matchLocale(Locale.SIMPLIFIED_CHINESE, Locale.TRADITIONAL_CHINESE));
    
            assertTrue(labelTypeHelper.matchLocale(null, Locale.ROOT));
            assertTrue(labelTypeHelper.matchLocale(Locale.ENGLISH, Locale.ROOT));
            assertTrue(labelTypeHelper.matchLocale(Locale.ROOT, Locale.ROOT));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/misc/LocaleUtil.java

            Locale locale = LocaleUtil.getDefault();
            if (localeStr != null) {
                final int index = localeStr.indexOf('_');
                if (index < 0) {
                    locale = new Locale(localeStr);
                } else {
                    final String language = localeStr.substring(0, index);
                    final String country = localeStr.substring(index + 1);
                    locale = new Locale(language, country);
                }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/text/DecimalFormatSymbolsUtil.java

        /**
         * {@link DecimalFormatSymbols}を返します。
         *
         * @param locale
         *            ロケール。{@literal null}であってはいけません
         * @return {@link DecimalFormatSymbols}
         */
        public static DecimalFormatSymbols getDecimalFormatSymbols(final Locale locale) {
            assertArgumentNotNull("locale", locale);
    
            DecimalFormatSymbols symbols = CACHE.get(locale);
            if (symbols == null) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top