Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Ford (0.32 sec)

  1. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // https://www.iana.org/domains/root/db/food.html
    food
    
    // football : Binky Moon, LLC
    // https://www.iana.org/domains/root/db/football.html
    football
    
    // ford : Ford Motor Company
    // https://www.iana.org/domains/root/db/ford.html
    ford
    
    // forex : Dog Beach, LLC
    // https://www.iana.org/domains/root/db/forex.html
    forex
    
    // forsale : Dog Beach, LLC
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    nom.ni
    nom.pa
    nom.pe
    nom.pl
    nom.ro
    nom.tm
    nom.ve
    nom.za
    nombre.bo
    nome.cv
    nome.pt
    nomi.ishikawa.jp
    nonoichi.ishikawa.jp
    noop.app
    noor.jp
    nord-aurdal.no
    nord-fron.no
    nord-odal.no
    norddal.no
    nordeste-idc.saveincloud.net
    nordkapp.no
    nordre-land.no
    nordreisa.no
    nore-og-uvdal.no
    north-kazakhstan.su
    norton
    nose.osaka.jp
    nosegawa.nara.jp
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  3. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    nom.ni
    nom.pa
    nom.pe
    nom.pl
    nom.ro
    nom.tm
    nom.ve
    nom.za
    nombre.bo
    nome.cv
    nome.pt
    nomi.ishikawa.jp
    nonoichi.ishikawa.jp
    noop.app
    noor.jp
    nord-aurdal.no
    nord-fron.no
    nord-odal.no
    norddal.no
    nordeste-idc.saveincloud.net
    nordkapp.no
    nordre-land.no
    nordreisa.no
    nore-og-uvdal.no
    north-kazakhstan.su
    norton
    nose.osaka.jp
    nosegawa.nara.jp
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

                            .result());
        }
    
        // GET /api/admin/elevateword/{id}
        /**
         * Retrieves a specific elevate word setting by ID.
         *
         * @param id the ID of the elevate word to retrieve
         * @return JSON response containing the elevate word configuration
         */
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/service/BadWordService.java

        }
    
        /**
         * Gets a bad word by its ID.
         * @param id The bad word ID.
         * @return Optional entity containing the bad word if found.
         */
        public OptionalEntity<BadWord> getBadWord(final String id) {
            return badWordBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a bad word.
         * @param badWord The bad word to store.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/badword/EditForm.java

        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the bad word entry being edited.
         * This is a required field for identifying which bad word to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this bad word entry.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  7. src/main/resources/fess_label.properties

    labels.suggest_word_configuration=Suggest Word
    labels.suggest_word_title_details=Suggest Word
    labels.suggest_word_type=Word Type
    labels.suggest_word_number=Number of Words
    labels.suggest_word_type_all=All
    labels.suggest_word_type_document=Document
    labels.suggest_word_type_query=Query
    labels.elevate_word_configuration=Elevate Word
    labels.elevate_word_title_details=Elevate Word
    labels.elevate_word_link_list=List
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CaseFormat.java

      }
    
      abstract String normalizeWord(String word);
    
      String normalizeFirstWord(String word) {
        return normalizeWord(word);
      }
    
      private static String firstCharOnlyToUpper(String word) {
        return word.isEmpty()
            ? word
            : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

        /** The label type IDs associated with this elevate word entry */
        public String[] labelTypeIds;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The word that should trigger document elevation in search results */
        @Required
        public String suggestWord;
    
        /** The reading/pronunciation of the suggest word for language analysis */
        public String reading;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

         *
         * @param word        The elevate word.
         * @param reading     The reading of the word.
         * @param tags        The tags associated with the word.
         * @param permissions The permissions for the word.
         * @param boost       The boost value for the word.
         * @param apply       true to apply the changes immediately.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
Back to top