- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 1,997 for bash (0.05 sec)
-
docs/site-replication/run-replication-with-checksum-header.sh
#!/usr/bin/env bash # shellcheck disable=SC2120 exit_1() { cleanup echo "minio1 ============" cat /tmp/minio1_1.log echo "minio2 ============" cat /tmp/minio2_1.log exit 1 } cleanup() { echo -n "Cleaning up instances of MinIO ..." pkill -9 minio || sudo pkill -9 minio rm -rf /tmp/minio{1,2} echo "done" } # Function to convert number to corresponding alphabet num_to_alpha() { local num=$1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 08:02:16 UTC 2024 - 11.4K bytes - Viewed (0) -
docs/site-replication/run-sse-kms-object-replication.sh
#!/usr/bin/env bash # shellcheck disable=SC2120 exit_1() { cleanup echo "minio1 ============" cat /tmp/minio1_1.log echo "minio2 ============" cat /tmp/minio2_1.log echo "minio3 ============" cat /tmp/minio3_1.log echo "minio4 ============" cat /tmp/minio4_1.log exit 1 } cleanup() { echo -n "Cleaning up instances of MinIO ..." pkill -9 minio || sudo pkill -9 minio pkill -9 kes || sudo pkill -9 kes
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 11.5K bytes - Viewed (0) -
docs/em/docs/advanced/settings.md
/// tip ๐ ๐ท, ๐ ๐ช `pip install python-dotenv`. /// ### `.env` ๐ ๐ ๐ช โ๏ธ `.env` ๐ โฎ๏ธ: ```bash ADMIN_EMAIL="******@****.***" APP_NAME="ChimichangApp" ``` ### โ โ โช๏ธโก๏ธ `.env` & โคด๏ธ โน ๐ `config.py` โฎ๏ธ: ```Python hl_lines="9-10" {!../../docs_src/settings/app03/config.py!} ```
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.3K bytes - Viewed (0) -
ci/official/utilities/code_check_full.bats
# vim: filetype=bash # # Copyright 2022 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS,
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Oct 23 18:48:35 UTC 2024 - 13.6K bytes - Viewed (0) -
docs/site-replication/run-multi-site-minio-idp.sh
#!/usr/bin/env bash # shellcheck disable=SC2120 exit_1() { cleanup echo "minio1 ============" cat /tmp/minio1_1.log cat /tmp/minio1_2.log echo "minio2 ============" cat /tmp/minio2_1.log cat /tmp/minio2_2.log echo "minio3 ============" cat /tmp/minio3_1.log cat /tmp/minio3_2.log exit 1 } cleanup() { echo "Cleaning up instances of MinIO" pkill minio pkill -9 minio
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 12.1K bytes - Viewed (0) -
docs/bucket/replication/setup_ilm_expiry_replication.sh
#!/usr/bin/env bash set -x trap 'catch $LINENO' ERR # shellcheck disable=SC2120 catch() { if [ $# -ne 0 ]; then echo "error on line $1" for site in sitea siteb sitec sited; do echo "$site server logs =========" cat "/tmp/${site}_1.log" echo "===========================" cat "/tmp/${site}_2.log" done fi echo "Cleaning up instances of MinIO" pkill minio pkill -9 minio rm -rf /tmp/multisitea
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 12.8K bytes - Viewed (0) -
docs/ja/docs/deployment/concepts.md
/// ### ไบๅในใใใใฎๆฆ็ฅไพ ใใใฏ**ใทในใใ ใ**ใใใญใคใใๆนๆณใซ**ๅคงใใไพๅญ**ใใใ ใใใใใใใใใใญใฐใฉใ ใฎ่ตทๅๆนๆณใๅ่ตทๅใฎๅฆ็ใชใฉใซใ้ขไฟใใฆใใใงใใใใ ่ใใใใใขใคใใขใใใใคใๆใใฆใฟใพใ๏ผ * ใขใใชใณใณใใใฎๅใซๅฎ่กใใใKubernetesใฎInitใณใณใใ * ไบๅใฎในใใใใๅฎ่กใใใขใใชใฑใผใทใงใณใ่ตทๅใใbashในใฏใชใใ * ๅฉ็จใใbashในใฏใชใใใ่ตทๅ๏ผๅ่ตทๅใใใใใจใฉใผใๆคๅบใใใใใๆนๆณใฏไปฅๅใจใใฆๅฟ ่ฆใซใชใใงใใใใ /// tip <!-- NOTE: the current version of docker.md is outdated compared to English one. -->
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 24.1K bytes - Viewed (0) -
src/archive/zip/reader.go
// Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package zip import ( "bufio" "encoding/binary" "errors" "hash" "hash/crc32" "internal/godebug" "io" "io/fs" "os" "path" "path/filepath" "slices" "strings" "sync" "time" ) var zipinsecurepath = godebug.New("zipinsecurepath") var (
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0) -
.bazelrc
build:rbe_linux_cuda_nvcc --config=cuda_nvcc build:rbe_linux_cuda_nvcc --repo_env TF_NCCL_USE_STUB=1 build:rbe_win_base --config=rbe_base build:rbe_win_base --shell_executable=C:\\tools\\msys64\\usr\\bin\\bash.exe build:rbe_win_base --remote_instance_name=projects/tensorflow-testing/instances/windows # Don't build the python zip archive in the RBE build. build:rbe_win_base --remote_download_minimal
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Mon Oct 28 22:02:31 UTC 2024 - 51.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
* Update GCE ContainerVM deployment to container-vm-v20170117 to pick up CVE fixes in base image. ([#40094](https://github.com/kubernetes/kubernetes/pull/40094), [@zmerlynn](https://github.com/zmerlynn)) * Update kube-proxy image to be based off of Debian 8.6 base image. ([#39695](https://github.com/kubernetes/kubernetes/pull/39695), [@ixdy](https://github.com/ixdy))
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0)