- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 366 for addLang (0.3 sec)
-
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequestBuilder.java
request.setSkipDuplicateWords(skipDuplicateWords); return this; } public SuggestRequestBuilder addLang(final String lang) { request.addLang(lang); return this; }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java
this.matchWordFirst = matchWordFirst; } public void setSkipDuplicateWords(final boolean skipDuplicateWords) { this.skipDuplicateWords = skipDuplicateWords; } public void addLang(final String lang) { languages.add(lang); } @Override protected String getValidationError() { return null; } @Override
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/json/SearchApiManager.java
stream(langs).of(stream -> stream.forEach(builder::addLang)); stream(parameter.getTags()).of(stream -> stream.forEach(builder::addTag)); final String key = ComponentUtil.getVirtualHostHelper().getVirtualHostKey(); if (StringUtil.isNotBlank(key)) { builder.addTag(key); } builder.addKind(SuggestItem.Kind.USER.toString());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 50.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
document.put("lang", "en"); suggester.indexer().indexFromDocument(new Map[] { document }); suggester.refresh(); SuggestResponse response1 = suggester.suggest().setQuery("The").addLang("en").setSuggestDetail(true).execute().getResponse(); assertEquals(0, response1.getNum()); assertEquals(0, response1.getTotal());
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 37K bytes - Viewed (0) -
architecture/tests/integration.md
# Istio Integration Tests This document highlights the different integration test setups and architectural configurations for setting up the tests. It also provides guidelines for adding integration tests to the Istio project, specifically focusing on the differences between adding tests to the various folders under `tests/integration`. It also explains the implications of using the main test setup in each folder. ## Overview
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 00:57:44 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/bucket/replication/setup_3site_replication.sh
./mc mb sitec/bucket/ ./mc version enable sitec/bucket/ ./mc mb -l sitec/olockbucket echo "adding replication rule for a -> b : ${remote_arn}" sleep 1 ./mc replicate add sitea/bucket/ \ --remote-bucket http://minio:minio123@127.0.0.1:9004/bucket \ --replicate "existing-objects,delete,delete-marker,replica-metadata-sync" sleep 1 echo "adding replication rule for b -> a : ${remote_arn}" ./mc replicate add siteb/bucket/ \
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequestBuilder.java
return this; } public PopularWordsRequestBuilder setSize(final int size) { request.setSize(size); return this; } public PopularWordsRequestBuilder addTag(final String tag) { request.addTag(tag); return this; } public PopularWordsRequestBuilder addRole(final String role) { request.addRole(role); return this; }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 2.3K bytes - Viewed (0) -
docs/integrations/veeam/README.md
### Add MinIO as an object store for Veeam Follow the steps from the Veeam documentation for adding MinIO as an object store - <https://helpcenter.veeam.com/docs/backup/vsphere/adding_s3c_object_storage.html?ver=100> For Veeam Backup with Immutability, choose the amount of days you want to make backups immutable for
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 5.4K bytes - Viewed (0) -
docs/en/docs/management-tasks.md
* Edit the text of the PR title to start in "imperative", like giving an order. So, instead of `Adding support for teleporting` use `Add support for teleporting`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 16 21:56:33 UTC 2024 - 14.2K bytes - Viewed (0) -
.github/bot_config.yml
* If you have above configuration and using _**Windows**_ platform - * Try adding the CUDA, CUPTI, and cuDNN installation directories to the %PATH% environment variable. * Refer [windows setup guide](https://www.tensorflow.org/install/gpu#windows_setup). * If you have above configuration and using _**Ubuntu/Linux**_ platform - * Try adding the CUDA, CUPTI, and cuDNN installation directories to the $LD_LIBRARY_PATH environment variable.
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Jul 15 05:00:54 UTC 2024 - 4K bytes - Viewed (0)