Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for English (0.19 sec)

  1. maven-core/src/test/resources/remote-repo-1/maven-test/jars/maven-test-b-1.0.jar

    org/apache/commons/codec/language/RefinedSoundex.class package org.apache.commons.codec.language; public synchronized class RefinedSoundex implements org.apache.commons.codec.StringEncoder { public static final char[] US_ENGLISH_MAPPING; public static final RefinedSoundex US_ENGLISH; private char[] soundexMapping; public void RefinedSoundex(); public void RefinedSoundex(char[]); public String soundex(String); public String encode(String) throws org.apache.commons.codec.EncoderException; public Object...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Mon Aug 09 19:02:31 GMT 2004
    - 18.4K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess.json

            "stemmer_en_filter": {
              "type": "stemmer",
              "name": "english"
            },
            "english_override": {
              "type":       "stemmer_override",
              "rules_path": "${fess.dictionary.path}en/stemmer_override.txt"
            },
            "possessive_stemmer_en_filter": {
              "type": "stemmer",
              "name": "possessive_english"
            },
            "stopword_en_filter": {
              "type": "stop",
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Aug 11 01:26:55 GMT 2022
    - 39.9K bytes
    - Viewed (2)
  3. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

                    return StringUtil.EMPTY;
                }
            });
            getMockRequest().setLocale(Locale.ENGLISH);
            assertNull(systemHelper.getForumLink());
        }
    
        public void test_getHelpLink() {
            getMockRequest().setLocale(Locale.ENGLISH);
            assertEquals("https://fess.codelibs.org/98.76/admin/xxx-guide.html", systemHelper.getHelpLink("xxx"));
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
  4. docs/en/data/external_links.yml

    Articles:
      English:
      - author: Kurtis Pykes - NVIDIA
        link: https://developer.nvidia.com/blog/building-a-machine-learning-microservice-with-fastapi/
        title: Building a Machine Learning Microservice with FastAPI
      - author: Ravgeet Dhillon - Twilio
        link: https://www.twilio.com/en-us/blog/booking-appointments-twilio-notion-fastapi
        title: Booking Appointments with Twilio, Notion, and FastAPI
      - author: Abhinav Tripathi - Microsoft Blogs
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

            Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                locale = Locale.ENGLISH;
            }
            runtime.registerData("langItems", systemHelper.getLanguageItems(locale));
            final String username = systemHelper.getUsername();
            runtime.registerData("username", username);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  6. docs/ja/docs/deployment/server-workers.md

    ここでは<a href="https://gunicorn.org/" class="external-link" target="_blank">**Gunicorn**</a>が**Uvicornのワーカー・プロセス**を管理する場合の使い方について紹介していきます。
    
    !!! info
        <!-- NOTE: the current version of docker.md is outdated compared to English one.  -->
        DockerやKubernetesなどのコンテナを使用している場合は、次の章で詳しく説明します: [コンテナ内のFastAPI - Docker](docker.md){.internal-link target=_blank}
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                return null;
            }
    
            final String localeName = value.trim().toLowerCase(Locale.ENGLISH).replace("-", "_");
    
            for (final String supportedLang : supportedLanguages) {
                if (localeName.startsWith(supportedLang.toLowerCase(Locale.ENGLISH))) {
                    return supportedLang;
                }
            }
            return null;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  8. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

                    log(buf);
                }
            });
        }
    
        public void record(final Object keyObj, final StatsAction action) {
            record(keyObj, action.name().toLowerCase(Locale.ENGLISH));
        }
    
        public void record(final Object keyObj, final String action) {
            getCacheKey(keyObj).ifPresent(key -> {
                try {
                    final StatsObject data = statsCache.getIfPresent(key);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

        }
    
        private boolean checkFileType(final String fileName, final String[] exts) {
            if (fileName == null) {
                return false;
            }
            final String lFileName = fileName.toLowerCase(Locale.ENGLISH);
            for (final String ext : exts) {
                if (lFileName.endsWith("." + ext)) {
                    return true;
                }
            }
            return false;
        }
    
        @Execute
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.3K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            if (level == null || level.isEmpty()) {
                return DEFAULT_VALIDATION_LEVEL;
            }
            try {
                return ValidationReportLevel.valueOf(level.toUpperCase(Locale.ENGLISH));
            } catch (IllegalArgumentException e) {
                logger.warn(
                        "Invalid value specified for property {}: '{}'. Supported values are (case insensitive): {}",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
Back to top