Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 896 for alocale (3.36 sec)

  1. android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java

        return pickInstance(Charset.availableCharsets().values(), Charsets.UTF_8);
      }
    
      @Generates
      Locale generateLocale() {
        return pickInstance(Locale.getAvailableLocales(), Locale.US);
      }
    
      @Generates
      Currency generateCurrency() {
        return pickInstance(Currency.getAvailableCurrencies(), Currency.getInstance(Locale.US));
      }
    
      // common.base
      @Empty
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 28K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local.go

    		return err
    	}
    
    	klog.V(1).Infof("[etcd] wrote Static Pod manifest for a local etcd member to %q\n", kubeadmconstants.GetStaticPodFilepath(kubeadmconstants.Etcd, manifestDir))
    	return nil
    }
    
    // CheckLocalEtcdClusterStatus verifies health state of local/stacked etcd cluster before installing a new etcd member
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  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. cmd/local-locker_gen.go

    Krishnan Parthasarathi <******@****.***> 1711041695 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 13.8K 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. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

         * <p>
         * Specifies the locale that javadoc uses when generating documentation.
         * The argument is the name of the locale, as described in java.util.Locale documentation, such as
         * en_US (English, United States) or en_US_WIN (Windows variant).
         * <p>
         * Specifying a locale causes javadoc to choose the resource files of that locale for messages
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top