Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 90 for LOCALE (0.14 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultColorMap.java

            }
            addDefault(style.name().toLowerCase(Locale.ROOT), colorSpec);
        }
    
        @Override
        public Color getStatusBarColor() {
            return getColor(STATUS_BAR);
        }
    
        @Override
        public Color getColourFor(StyledTextOutput.Style style) {
            return getColor(style.name().toLowerCase(Locale.ROOT));
        }
    
        @Override
        public Color getColourFor(Style style) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/utils/Os.java

     * under the License.
     */
    package org.apache.maven.utils;
    
    import java.io.File;
    import java.util.Locale;
    import java.util.stream.Stream;
    
    /**
     * OS support
     */
    public class Os {
    
        /**
         * The OS Name.
         */
        public static final String OS_NAME = System.getProperty("os.name").toLowerCase(Locale.ENGLISH);
    
        /**
         * The OA architecture.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/CharSequenceExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.stdlib
    
    import java.util.Locale
    
    
    fun CharSequence.capitalized(): String =
        when {
            isEmpty() -> ""
            else -> get(0).let { initial ->
                when {
                    initial.isLowerCase() -> initial.titlecase(Locale.getDefault()) + substring(1)
                    else -> toString()
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 985 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

            throw new UnsupportedOperationException("This decorator already handles annotation processing");
        }
    
        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            if (called) {
                throw new IllegalStateException("Cannot reuse a compilation task");
            }
            called = true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JdkTools.java

            }
    
            @Override
            public StandardJavaFileManager getStandardFileManager(DiagnosticListener<? super JavaFileObject> diagnosticListener, Locale locale, Charset charset) {
                return delegate.getStandardFileManager(diagnosticListener, locale, charset);
            }
    
            @Override
            public String name() {
                return delegate.name();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/model/annotations/InputPropertyAnnotationHandler.java

    import org.gradle.model.internal.type.ModelType;
    import org.gradle.util.internal.TextUtil;
    
    import java.io.File;
    import java.net.URL;
    import java.util.List;
    import java.util.Locale;
    
    import static org.gradle.api.problems.Severity.WARNING;
    import static org.gradle.internal.deprecation.Documentation.userManual;
    import static org.gradle.internal.execution.model.annotations.ModifierAnnotationCategory.OPTIONAL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top