- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 179 for cleanups (0.1 sec)
-
android/guava/src/com/google/common/base/internal/Finalizer.java
@SuppressWarnings("InfiniteLoopStatement") @Override public void run() { while (true) { try { if (!cleanUp(queue.remove())) { break; } } catch (InterruptedException e) { // ignore } } } /** * Cleans up the given reference and any other references already in the queue. Catches and logs * all throwables. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Aug 23 12:54:09 UTC 2023 - 9.4K bytes - Viewed (0) -
docs/changelogs/upgrading_to_okhttp_4.md
are uncommon and Kotlin callers may have incorrectly assigned the result to `List<String>`. Code Cleanup ------------ IntelliJ and Android Studio offer a **Code Cleanup** feature that will automatically update deprecated APIs with their replacements. Access this feature from the _Search Anywhere_ dialog (double-press shift) or under the _Analyze_ menu.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:58:16 UTC 2022 - 10.9K bytes - Viewed (0) -
cmd/os-readdir_test.go
dir := t.TempDir() entries := []string{} for i := 0; i < 10; i++ { name := fmt.Sprintf("file-%d", i) if err := os.WriteFile(filepath.Join(dir, name), []byte{}, os.ModePerm); err != nil { // For cleanup, its required to add these entries into test results. testResults = append(testResults, result{dir, entries}) t.Fatalf("Unable to create file, %s", err) } entries = append(entries, name) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 7.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.6.md
- [DNS](#dns) - [DNS Autoscaler](#dns-autoscaler) - [Cluster Autoscaler](#cluster-autoscaler-1) - [Cluster Load Balancing](#cluster-load-balancing) - [etcd Empty Dir Cleanup](#etcd-empty-dir-cleanup) - [Fluentd](#fluentd) - [Heapster](#heapster) - [Registry](#registry) - [External Dependency Version Information](#external-dependency-version-information)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 304K bytes - Viewed (0) -
docs/bucket/replication/test_del_marker_proxying.sh
exit_1() { cleanup for site in sitea siteb; do echo "$site server logs =========" cat "/tmp/${site}_1.log" echo "===========================" cat "/tmp/${site}_2.log" done exit 1 } cleanup() { echo -n "Cleaning up instances of MinIO ..." pkill -9 minio || sudo pkill -9 minio rm -rf /tmp/sitea rm -rf /tmp/siteb echo "done" } cleanup export MINIO_CI_CD=1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 2.2K bytes - Viewed (0) -
buildscripts/minio-upgrade.sh
#!/bin/bash trap 'cleanup $LINENO' ERR # shellcheck disable=SC2120 cleanup() { MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \ -f "buildscripts/upgrade-tests/compose.yml" \ down || true MINIO_VERSION=dev /tmp/gopath/bin/docker-compose \ -f "buildscripts/upgrade-tests/compose.yml" \ rm || true for volume in $(docker volume ls -q | grep upgrade); do docker volume rm ${volume} || true done
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jun 13 05:08:11 UTC 2024 - 2.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.19.md
- [Changes by Kind](#changes-by-kind-1) - [Bug or Regression](#bug-or-regression-1) - [Other (Cleanup or Flake)](#other-cleanup-or-flake) - [Dependencies](#dependencies-1) - [Added](#added-1) - [Changed](#changed-1) - [Removed](#removed-1) - [v1.19.14](#v11914) - [Downloads for v1.19.14](#downloads-for-v11914)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Jan 05 05:42:32 UTC 2022 - 489.7K bytes - Viewed (0) -
common/scripts/kind_provisioner.sh
function setup_kind_cluster() { local NAME="${1:-istio-testing}" local IMAGE="${2:-"${DEFAULT_KIND_IMAGE}"}" local CONFIG="${3:-}" local NOMETALBINSTALL="${4:-}" local CLEANUP="${5:-true}" check_default_cluster_yaml # Delete any previous KinD cluster echo "Deleting previous KinD cluster with name=${NAME}" if ! (kind delete cluster --name="${NAME}" -v9) > /dev/null; then
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Aug 21 04:47:23 UTC 2024 - 17.2K bytes - Viewed (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt
* limitations under the License. */ package gradlebuild.cleanup.services import gradlebuild.cleanup.removeCachedScripts import gradlebuild.cleanup.removeDaemonLogFiles import gradlebuild.cleanup.removeDodgyCacheFiles import gradlebuild.cleanup.removeOldVersionsFromDir import gradlebuild.cleanup.removeTransformDir import org.gradle.api.file.Directory import org.gradle.api.file.DirectoryProperty
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
protected int numOfThreads = 1; protected boolean cleanup = false; public GenerateThumbnailJob numOfThreads(final int numOfThreads) { this.numOfThreads = numOfThreads; return this; } public GenerateThumbnailJob cleanup() { cleanup = true; return this; } @Override public String execute() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 10.6K bytes - Viewed (0)