- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 475 for terme (0.1 sec)
-
src/main/resources/fess_label_fr.properties
labels.related_content_content=Contenu labels.related_content_list_term=Terme labels.related_content_term=Terme labels.related_content_title_details=Contenu associé labels.related_query_configuration=Requête associée labels.related_query_list_term=Terme labels.related_query_queries=Requêtes labels.related_query_term=Terme labels.related_query_title_details=Requête associée labels.crud_button_create=Créer
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 45.6K bytes - Viewed (0) -
docs/fr/docs/tutorial/first-steps.md
Le schéma inclut les chemins de votre API, les paramètres potentiels de chaque chemin, etc. #### "Schéma" de données Le terme "schéma" peut aussi faire référence à la forme de la donnée, comme un contenu JSON. Dans ce cas, cela signifierait les attributs JSON, ainsi que les types de ces attributs, etc. #### OpenAPI et JSON Schema
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Nov 09 16:39:20 UTC 2024 - 10.1K bytes - Viewed (0) -
docs/fr/docs/async.md
Pour parler de tâches "synchrones" (en opposition à "asynchrones"), on utilise souvent le terme "séquentiel", car l'ordinateur / le programme va effectuer toutes les étapes d'une tâche séquentiellement avant de passer à une autre tâche, même si ces étapes impliquent de l'attente. ### Concurrence et Burgers
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:56:21 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
testData2.add(createRelatedQuery("term2", new String[] { "query2" }, "")); mockBhv.setTestData(testData2); relatedQueryHelper.load(); // Old term should not be found results = relatedQueryHelper.getRelatedQueries("term1"); assertEquals(0, results.length); // New term should be found
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedContentHelperTest.java
testData.add(createRelatedContent("term1", "content1", "")); testData.add(createRelatedContent("term2", "content2", "host1")); mockBhv.setTestData(testData); List<RelatedContent> result = relatedContentHelper.getAvailableRelatedContentList(); assertEquals(2, result.size()); assertEquals("term1", result.get(0).getTerm()); assertEquals("term2", result.get(1).getTerm()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.3K bytes - Viewed (0) -
docs/LICENSE
Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 3. Term. The term of this Public License is specified in Section 6(a). 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 10 16:50:06 UTC 2021 - 18.2K bytes - Viewed (0) -
LICENSE
of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Apr 23 18:58:53 UTC 2021 - 33.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/parser/QueryParser.java
protected String defaultField = Constants.DEFAULT_FIELD; /** The analyzer used to analyze query terms */ protected Analyzer analyzer = new WhitespaceAnalyzer(); /** Whether to allow leading wildcards in query terms */ protected boolean allowLeadingWildcard = true; /** The default operator to use between query terms */ protected Operator defaultOperator = Operator.AND; /** List of filters to apply to queries */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
* Gets the maximum size for alphanumeric terms from configuration. * * @return the maximum alphanumeric term size */ protected int getMaxAlphanumTermSize() { final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getCrawlerDocumentMaxAlphanumTermSizeAsInteger(); } /** * Gets the maximum size for symbol terms from configuration. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
} /** * Converts a string to lowercase. * * @param term The string to convert. * @return The lowercase string. */ private String toLowerCase(final String term) { return term != null ? term.toLowerCase(Locale.ROOT) : term; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0)