- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,181 for termo (0.02 sec)
-
src/main/resources/fess_label_pt_BR.properties
labels.related_content_content=Conteúdo labels.related_content_list_term=Termo de pesquisa labels.related_content_term=Termo de pesquisa labels.related_content_title_details=Conteúdo relacionado labels.related_query_configuration=Consulta relacionada labels.related_query_list_term=Termo de pesquisa labels.related_query_queries=Consultas labels.related_query_term=Termo de pesquisa labels.related_query_title_details=Consulta relacionada
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 48.7K bytes - Viewed (0) -
docs/pt/docs/tutorial/first-steps.md
Antes do deploy, certifique-se de que está autenticado: <div class="termy"> ```console $ fastapi login You are logged in to FastAPI Cloud 🚀 ``` </div> Em seguida, faça o deploy da sua aplicação: <div class="termy"> ```console $ fastapi deploy Deploying to FastAPI Cloud... ✅ Deployment successful!
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 20:41:43 UTC 2025 - 13.6K bytes - Viewed (0) -
docs/pt/docs/tutorial/sql-databases.md
/// tip | Dica Você pode usar qualquer outra biblioteca de banco de dados SQL ou NoSQL que quiser (em alguns casos chamadas de <abbr title="Object Relational Mapper – Mapeador Objeto-Relacional: um termo sofisticado para uma biblioteca onde algumas classes representam tabelas SQL e instâncias representam linhas nessas tabelas">"ORMs"</abbr>), o FastAPI não obriga você a usar nada. 😎 ///
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 16 20:32:40 UTC 2025 - 16.9K bytes - Viewed (0) -
docs/pt/docs/_llm-test.md
Esta é uma lista não completa e não normativa de termos (principalmente) técnicos vistos na documentação. Pode ser útil para o autor do prompt descobrir para quais termos o LLM precisa de uma ajudinha. Por exemplo, quando ele continua revertendo uma boa tradução para uma tradução subótima. Ou quando tem problemas para conjugar/declinar um termo no seu idioma.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:17:03 UTC 2025 - 12.4K bytes - Viewed (0) -
docs/pt/docs/async.md
Para "síncrono" (contrário de "assíncrono") também é utilizado o termo "sequencial", porquê o computador / programa segue todos os passos, em sequência, antes de trocar para uma tarefa diferente, mesmo se alguns passos envolvam esperar. ### Concorrência e hambúrgueres { #concurrency-and-burgers }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Nov 12 16:23:57 UTC 2025 - 25.8K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
</dd> <dt>Boost</dt> <dd> To boost a term use the "^" symbol with a boost factor (a number) at the end of the term you are searching. <pre>Fess^100</pre> </dd> <dt>Fuzzy</dt> <dd> To do a fuzzy search use the "~" symbol at the end of a single word term. For example to search for a term similar in spelling to "Fess" use the fuzzy search: <pre>Fess~0.5</pre> </dd>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/CreateForm.java
/** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Input terms (comma-separated) that will be mapped to the output term */ @Required @Size(max = 1000) public String inputs; /** Output term that input terms will be mapped to */ @Size(min = 1, max = 1000) public String output; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/RelatedQueryHelper.java
return queries; } } return StringUtil.EMPTY_STRINGS; } private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
final Term[] terms = phraseQuery.getTerms(); if (terms.length == 0) { throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY), "Unknown phrase query: " + phraseQuery); } final FessConfig fessConfig = ComponentUtil.getFessConfig(); final String field = terms[0].field();
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
* <li>Optionally removing duplicate terms based on a flag.</li> * <li>Limiting the maximum size of alphanumeric and symbol terms.</li> * </ul> * * <p>The {@link TextNormalizeContext} class provides a fluent API to configure the text * normalization process, including setting initial buffer capacity, maximum term sizes, * duplicate term removal, and custom space characters. * * <p>Example usage:
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 12K bytes - Viewed (0)