Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,455 for Locale (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilJvm.kt

        }
      return if (includeDefaultPort || port != defaultPort(scheme)) {
        "$host:$port"
      } else {
        host
      }
    }
    
    /** Returns a [Locale.US] formatted [String]. */
    internal fun format(
      format: String,
      vararg args: Any,
    ): String {
      return String.format(Locale.US, format, *args)
    }
    
    /**
     * will also strip BOM from the source
     */
    @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

     */
    package org.codelibs.fess.helper;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Locale;
    import java.util.Map;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/Amount.java

    import javax.annotation.Nullable;
    import java.math.BigDecimal;
    import java.math.RoundingMode;
    import java.text.DecimalFormat;
    import java.text.DecimalFormatSymbols;
    import java.util.List;
    import java.util.Locale;
    
    /**
     * An amount is an immutable value of some quantity, such as duration or length. Each amount has a decimal value and associated units.
     *
     * TODO - need to sort out scaling when dividing or converting between units.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriter.java

                    JavadocOptionFileWriterContext writerContext = new JavadocOptionFileWriterContext(writer);
    
                    JavadocOptionFileOption<?> localeOption = options.remove("locale");
                    if (localeOption != null) {
                        localeOption.write(writerContext);
                    }
    
                    for (final String option : options.keySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

                        <keywords>true</keywords>
                        <use>true</use>
                        <windowtitle>JUnit API</windowtitle>
                        <encoding>UTF-8</encoding>
                        <locale>en</locale>
                        <javadocVersion>${jdkVersion}</javadocVersion>
                        <javaApiLinks>
                            <property>
                                <name>api_${jdkVersion}</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                properties.put("stderr.encoding", getDefaultCharacterEncoding());
            }
            Locale locale = getDefaultLocale();
            if (locale != null) {
                properties.put("user.language", locale.getLanguage());
                properties.put("user.country", locale.getCountry());
                properties.put("user.variant", locale.getVariant());
            }
    
            if (eagerClassLoaderCreationChecksOn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

    import org.jetbrains.kotlin.lexer.KotlinLexer
    import org.jetbrains.kotlin.lexer.KtTokens
    import org.jetbrains.kotlin.name.NameUtils
    
    import java.io.File
    import java.util.Locale
    
    
    internal
    data class PrecompiledScriptPlugin(internal val scriptFile: File) {
    
        val scriptFileName: String
            get() = scriptFile.name
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    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
    // if the given locale cannot be expanded.
    func (t Tag) addLikelySubtags() (Tag, error) {
    	id, err := addTags(t)
    	if err != nil {
    		return t, err
    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. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/GroovyInteroperabilityTest.kt

            val c0 =
                object : Closure<Boolean>(null, null) {
                    @Suppress("unused")
                    fun doCall() = invocations.add("c0")
                }
    
            val c1 =
                object : Closure<Boolean>(null, null) {
                    @Suppress("unused")
                    fun doCall(x: Any) = invocations.add("c1($x)")
                }
    
            val c2 =
                object : Closure<Boolean>(null, null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. 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)
Back to top