Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 288 for LOCALE (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/verification/model/IgnoredKey.java

    import javax.annotation.Nullable;
    import java.util.Locale;
    
    public class IgnoredKey implements Comparable<IgnoredKey> {
        private final String keyId;
        private final String reason;
    
        public IgnoredKey(String keyId, @Nullable String reason) {
            this.keyId = keyId.toUpperCase(Locale.ROOT);
            this.reason = reason;
        }
    
        public String getKeyId() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/OperatingSystemProfileActivator.java

            String actualOsName = context.getSystemProperties().get("os.name").toLowerCase(Locale.ENGLISH);
            String actualOsArch = context.getSystemProperties().get("os.arch").toLowerCase(Locale.ENGLISH);
            String actualOsVersion = context.getSystemProperties().get("os.version").toLowerCase(Locale.ENGLISH);
    
            if (active && os.getFamily() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        /**
         * This method should be used when making strings lowercase that
         * could be affected by locale differences. This method always uses an
         * English locale.
         *
         * @param s string to be made lowercase
         * @return a lowercase string that ignores locale
         * @see <a href="https://issues.gradle.org/browse/GRADLE-3470">GRADLE-3470</a>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/PathTraversalChecker.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    import java.util.Locale;
    
    import static java.lang.String.format;
    
    public class PathTraversalChecker {
    
        /**
         * Checks the entry name for path traversal vulnerable sequences.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

                enumValue = tryGetValue(value);
                if (enumValue == null) {
                    enumValue = tryGetValue(value.toLowerCase(Locale.ROOT));
                }
                if (enumValue == null) {
                    enumValue = tryGetValue(value.toUpperCase(Locale.ROOT));
                }
            }
            if (enumValue == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. platforms/core-runtime/io/src/main/java/org/gradle/internal/io/LinePerThreadBufferingOutputStream.java

     * limitations under the License.
     */
    
    package org.gradle.internal.io;
    
    import java.io.IOException;
    import java.io.PrintStream;
    import java.util.Locale;
    
    public class LinePerThreadBufferingOutputStream extends PrintStream {
        private final TextStream handler;
        @SuppressWarnings("ThreadLocalUsage")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        MinimalJavadocOptions breakIterator();
    
        @Nullable @Optional @Input
        String getLocale();
    
        void setLocale(@Nullable String locale);
    
        MinimalJavadocOptions locale(String locale);
    
        @Nullable @Optional @Input
        String getEncoding();
    
        void setEncoding(@Nullable String encoding);
    
        MinimalJavadocOptions encoding(String encoding);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/text/DecimalFormatSymbolsUtilTest.java

    import java.util.Locale;
    
    import junit.framework.TestCase;
    
    /**
     * @author higa
     *
     */
    public class DecimalFormatSymbolsUtilTest extends TestCase {
    
        /**
         * @throws Exception
         */
        public void testGetDecimalFormatSymbols() throws Exception {
            final DecimalFormatSymbols symbols = DecimalFormatSymbolsUtil.getDecimalFormatSymbols(Locale.GERMAN);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServiceRole.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import java.util.Locale;
    
    @UsedByScanPlugin("values are expected (type is not linked), see BuildCacheStoreBuildOperationType and friends")
    public enum BuildCacheServiceRole {
        LOCAL,
        REMOTE;
    
        private final String displayName;
    
        BuildCacheServiceRole() {
            this.displayName = name().toLowerCase(Locale.ROOT);
        }
    
        public String getDisplayName() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:35:05 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/convert/DateConversionUtilTest.java

    import java.util.Calendar;
    import java.util.Date;
    import java.util.Locale;
    
    import org.codelibs.core.misc.LocaleUtil;
    import org.junit.After;
    import org.junit.Before;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class DateConversionUtilTest {
    
        @Before
        public void setUp() throws Exception {
            LocaleUtil.setDefault(() -> Locale.JAPANESE);
        }
    
        @After
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top