Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for LOCALE (0.22 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/profile/activation/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: Wed Jun 05 14:16:41 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/stdlib/StringExtensions.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.extensions.stdlib
    
    import java.util.Locale
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 755 bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

        }
    
        @Override
        public void setProcessors(Iterable<? extends Processor> processors) {
            delegate.setProcessors(processors);
        }
    
        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
            ClassNameCollector classNameCollector = new ClassNameCollector(relativize, classBackupService, delegate.getElements());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleContextualExecuter.java

        }
    
        @Override
        public GradleExecuter withDefaultLocale(Locale defaultLocale) {
            if (executerType == Executer.embedded && !defaultLocale.equals(Locale.getDefault())) {
                // need to fork to apply the new default locale
                requireDaemon().requireIsolatedDaemons();
            }
            return super.withDefaultLocale(defaultLocale);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 18:06:31 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/ConfigurationDeprecationType.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.deprecation;
    
    import java.util.Locale;
    
    public enum ConfigurationDeprecationType {
        DEPENDENCY_DECLARATION("use", true),
        CONSUMPTION("use attributes to consume", false),
        RESOLUTION("resolve", true),
        ARTIFACT_DECLARATION("use", true);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/stdlib-kotlin-extensions/src/main/kotlin/org/gradle/configurationcache/extensions/CharSequenceExtensions.kt

     * limitations under the License.
     */
    
    package org.gradle.configurationcache.extensions
    
    import java.util.Locale
    
    
    @Deprecated(
        "This was never intended as a public API.",
        ReplaceWith("this.let { if (it.isEmpty()) it else it[0].titlecase(java.util.Locale.getDefault()) + it.substring(1) }")
    )
    fun CharSequence.capitalized(): String =
        when {
            isEmpty() -> ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/HandleReportStatus.java

    import org.gradle.launcher.daemon.protocol.ReportStatus;
    import org.gradle.launcher.daemon.protocol.Status;
    import org.gradle.launcher.daemon.protocol.Success;
    import org.gradle.util.GradleVersion;
    
    import java.util.Locale;
    
    public class HandleReportStatus implements DaemonCommandAction {
        @Override
        public void execute(DaemonCommandExecution execution) {
            if (execution.getCommand() instanceof ReportStatus) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top