Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for dictionaries (0.09 sec)

  1. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

                    return null;
                }).filter(file -> file != null).toArray(n -> new DictionaryFile<?>[n]);
            } catch (final IOException e) {
                throw new DictionaryException("Failed to access dictionaries", e);
            }
        }
    
        public OptionalEntity<DictionaryFile<? extends DictionaryItem>> getDictionaryFile(final String id) {
            for (final DictionaryFile<? extends DictionaryItem> dictFile : getDictionaryFiles()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/dataclasses.md

    9. This *path operation function* is not returning dataclasses (although it could), but a list of dictionaries with internal data.
    
        FastAPI will use the `response_model` parameter (that includes dataclasses) to convert the response.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:35:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_en.properties

    labels.joblog_delete_all_confirmation=Do you really want to delete all?
    labels.joblog_delete_all_cancel=Cancel
    labels.dict_configuration=Dictionary List
    labels.dict_list_title=Dictionary List
    labels.dict_list_link=Dictionaries
    labels.dictionary_name=Name
    labels.dictionary_type=Type
    labels.dict_synonym_configuration=Synonym List
    labels.dict_synonym_title=Synonym List
    labels.dict_synonym_list_link=List
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. src/main/resources/esclient.xml

    			 "cluster.initial_cluster_manager_nodes":"search_engine",
    			 "node.roles":"cluster_manager,data,ingest,ml",
    			 -->
    			 "indices.breaker.total.limit":"100%",
    			 "action.auto_create_index":"-*"}
    		</property>
    		<!-- Dictionaries -->
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"mapping.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"synonym.txt"</arg>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Oct 21 12:20:52 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. src/main/resources/fess_label.properties

    labels.joblog_delete_all_confirmation=Do you really want to delete all?
    labels.joblog_delete_all_cancel=Cancel
    labels.dict_configuration=Dictionary List
    labels.dict_list_title=Dictionary List
    labels.dict_list_link=Dictionaries
    labels.dictionary_name=Name
    labels.dictionary_type=Type
    labels.dict_synonym_configuration=Synonym List
    labels.dict_synonym_title=Synonym List
    labels.dict_synonym_list_link=List
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/response-model.md

    You can use **type annotations** the same way you would for input data in function **parameters**, you can use Pydantic models, lists, dictionaries, scalar values like integers, booleans, etc.
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="16  21"
    {!> ../../docs_src/response_model/tutorial001_01_py310.py!}
    ```
    
    ////
    
    //// tab | Python 3.9+
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.upgrade_reindex=Reindex
    labels.replace_aliases=Update Aliases
    labels.reset_dictionaries=Reset Dictionaries
    labels.reindex_start_button=Start
    labels.doc_score=Score:
    labels.development_mode_warning=Running as Development mode. For production use, please install a standalone OpenSearch server.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_ko.properties

    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    labels.storage_bucket=Bucket
    labels.upgrade_reindex=Reindex
    labels.replace_aliases=Update Aliases
    labels.reset_dictionaries=Reset Dictionaries
    labels.reindex_start_button=Start
    labels.doc_score=Score:
    labels.development_mode_warning=Running as Development mode. For production use, please install a standalone OpenSearch server.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Dictionary List */
        public static final String LABELS_dict_list_title = "{labels.dict_list_title}";
    
        /** The key of the message: Dictionaries */
        public static final String LABELS_dict_list_link = "{labels.dict_list_link}";
    
        /** The key of the message: Name */
        public static final String LABELS_dictionary_name = "{labels.dictionary_name}";
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/dataclasses.md

    9. Esta *função de operação de rota* não está retornando dataclasses (embora pudesse), mas uma lista de dicionários com dados internos.
    
        O FastAPI usará o parâmetro `response_model` (que inclui dataclasses) para converter a resposta.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 17:33:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top