Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for toLocal (0.15 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/LocaleSupportDaemonIntegrationTest.groovy

    @Issue("https://issues.gradle.org/browse/GRADLE-3142")
    class LocaleSupportDaemonIntegrationTest extends DaemonIntegrationSpec {
    
        def locales = [
                LocaleUtils.toLocale("es_MX"),
                LocaleUtils.toLocale("ja_JP"),
                LocaleUtils.toLocale("hr_HR")
        ].findAll {
            it != Locale.default
        }
    
        def "custom locale is applied to daemon"() {
    
            buildScript """
                task printLocale {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. tools/go-compile-verbose

        elif [[ "$f" =~ "$GROOT" ]]; then
            base="${f/"$GROOT"\//}"
            log "${ls}\tstd\t${base}"
        elif [[ "$f" =~ "$ROOT" ]]; then
            base="${f/"$ROOT"\//}"
            log "${ls}\tlocal\t${base}"
        else
            log "${ls}\tunknown\t${f}"
        fi
        ;;
      vet)
        # vet does not readily expose what is being vetted
        log "${ls}" ;;
      asm)
        f="${@:$#}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 18:18:29 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProvider.java

            if (StringUtil.isNotBlank(name)) {
                try {
                    return requestManager.getParameter(name).filter(StringUtil::isNotBlank).map(LocaleUtils::toLocale);
                } catch (final Exception e) {
                    logger.debug("Failed to parse a value of {}.", name, e);
                }
            }
            return OptionalObject.empty();
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/ztunnel/configdump/connections.go

    		if s, f := serviceNames[ip]; f {
    			return net.JoinHostPort(s, port)
    		}
    		if w, f := workloadNames[ip]; f {
    			return net.JoinHostPort(w, port)
    		}
    		return addr
    	}
    	fmt.Fprintln(w, "WORKLOAD\tDIRECTION\tLOCAL\tREMOTE\tREMOTE TARGET")
    	workloads := maps.Values(d.WorkloadState)
    	workloads = slices.SortFunc(workloads, func(a, b WorkloadState) int {
    		if r := cmp.Compare(a.Info.Namespace, b.Info.Namespace); r != 0 {
    			return r
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                        public List<Map<String, String>> load(final String key) throws Exception {
                            final ULocale uLocale = new ULocale(key);
                            final Locale displayLocale = uLocale.toLocale();
                            final List<Map<String, String>> langItems = new ArrayList<>(supportedLanguages.length);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/runtime/time.go

    		// so there is no chance of getg().m being reassigned
    		// out from under us while this function executes.
    		tsLocal := &getg().m.p.ptr().timers
    		if tsLocal.raceCtx == 0 {
    			tsLocal.raceCtx = racegostart(abi.FuncPCABIInternal((*timers).run) + sys.PCQuantum)
    		}
    		raceacquirectx(tsLocal.raceCtx, unsafe.Pointer(t))
    	}
    
    	if t.state&(timerModified|timerZombie) != 0 {
    		badTimer()
    	}
    
    	f := t.f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    | N/A
    
    | link:https://github.com/airbnb/epoxy[Epoxy]
    | link:https://github.com/airbnb/epoxy/releases/tag/4.0.0-beta1[4.0.0-beta1]
    | N/A
    
    | link:https://docs.jboss.org/hibernate/orm/5.4/topical/html_single/metamodelgen/MetamodelGenerator.html[JPA Static Metamodel Generator]
    | link:https://github.com/hibernate/hibernate-orm/releases/tag/5.4.11[5.4.11]
    | N/A
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top