- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 1,156 for delenv (0.05 seconds)
-
ci/official/utilities/cleanup_docker.sh
# limitations under the License. # ============================================================================== cat <<EOF IMPORTANT: These tests ran under docker. This script does not clean up the container for you! You can delete the container with: $ docker rm -f tf You can also execute more commands within the container with e.g.: $ docker exec tf bazel clean $ docker exec -it tf bash EOF
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Aug 10 20:26:29 GMT 2023 - 998 bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsBadWordBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(BadWord entity) { doDelete(entity, null); } public void delete(BadWord entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsBoostDocumentRuleBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(BoostDocumentRule entity) { doDelete(entity, null); } public void delete(BoostDocumentRule entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 10.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsDuplicateHostBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(DuplicateHost entity) { doDelete(entity, null); } public void delete(DuplicateHost entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsJobLogBhv.java
entity.asDocMeta().indexOption(opLambda); doInsertOrUpdate(entity, null, null); } public void delete(JobLog entity) { doDelete(entity, null); } public void delete(JobLog entity, RequestOptionCall<DeleteRequestBuilder> opLambda) { entity.asDocMeta().deleteOption(opLambda); doDelete(entity, null); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.6K bytes - Click Count (0) -
cmd/object-api-deleteobject_test.go
t.Errorf("Test %d: %s: mismatch number of objects after delete, expected = %v, found = %v", i+1, instanceType, testCase.objectsAfterDelete, result.Objects) continue } for idx := range result.Objects { if result.Objects[idx].Name != testCase.objectsAfterDelete[idx] { t.Errorf("Test %d: %s: Unexpected object found after delete, found = `%v`", i+1, instanceType, result.Objects[idx].Name) } } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Aug 29 01:40:52 GMT 2024 - 4.1K bytes - Click Count (0) -
docs/features/caching.md
## Cache directory The cache directory must be exclusively owned by a single instance. Deleting the cache when it is no longer needed can be done. However this may delete the purpose of the cache which is designed to persist between app restarts. ```kotlin cache.delete() ``` ## Pruning the Cache Pruning the entire Cache to clear space temporarily can be done using evictAll. ```kotlin cache.evictAll() ```
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Feb 06 02:19:09 GMT 2022 - 3.1K bytes - Click Count (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlFilterServiceImpl.java
} } /* * (non-Javadoc) * * @see * org.codelibs.fess.crawler.service.impl.UrlFilterService#delete(java.lang.String) */ @Override public void delete(final String sessionId) { dataHelper.clearUrlPattern(sessionId); } /* * (non-Javadoc) *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 4.2K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Supplier.java
* * <p><b>Warning: do not depend</b> on the behavior of this method. * * <p>Historically, {@code Supplier} instances in this library have implemented this method to * recognize certain cases where distinct {@code Supplier} instances would in fact behave * identically. However, as code migrates to {@code java.util.function}, that behavior will * disappear. It is best not to depend on it. */ @OverrideCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Jun 19 17:20:48 GMT 2025 - 3K bytes - Click Count (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/UpgradeContextTest.java
UpgradeContext context = TestUtils.createMockContext(Paths.get("/test")); // Test that icon rendering doesn't throw exceptions // The actual icons used depend on the terminal's charset capabilities context.success("Icon rendering test"); context.failure("Icon rendering test"); context.warning("Icon rendering test"); context.detail("Icon rendering test");
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Jul 15 09:35:08 GMT 2025 - 3.3K bytes - Click Count (0)