Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 342 for LOCALE (0.25 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

            final List<Map<String, String>> itemList = new ArrayList<>();
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_basic"), Constants.BASIC));
            itemList.add(createItem(ComponentUtil.getMessageManager().getMessage(locale, "labels.webauth_scheme_digest"), Constants.DIGEST));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.entity;
    
    import java.util.Collection;
    import java.util.LinkedHashMap;
    import java.util.Locale;
    import java.util.Map;
    import java.util.ResourceBundle;
    
    import javax.annotation.PostConstruct;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/util/concurrent/ServiceTest.java

    import static com.google.common.util.concurrent.Service.State.STARTING;
    import static com.google.common.util.concurrent.Service.State.STOPPING;
    import static com.google.common.util.concurrent.Service.State.TERMINATED;
    
    import java.util.Locale;
    import junit.framework.TestCase;
    
    /** Unit tests for {@link Service} */
    public class ServiceTest extends TestCase {
    
      /** Assert on the comparison ordering of the State enum since we guarantee it. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top