- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 335 for echo (0.03 sec)
-
docs/site-replication/run-ssec-object-replication-with-compression.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 minio || sudo pkill minio pkill -9 minio || sudo pkill -9 minio rm -rf /tmp/minio{1,2} echo "done" } cleanup export MINIO_CI_CD=1
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/site-replication/run-replication-with-checksum-header.sh
DEST_OBJ_1_CHKSUM=$(echo "${DEST_OUT_1}" | jq '.ChecksumSHA256') DEST_OBJ_2_CHKSUM=$(echo "${DEST_OUT_2}" | jq '.ChecksumSHA256') DEST_OBJ_1_ETAG=$(echo "${DEST_OUT_1}" | jq '.ETag') DEST_OBJ_2_ETAG=$(echo "${DEST_OUT_2}" | jq '.ETag') # Check the replication of checksums and etags if [ "${SRC_OBJ_1_CHKSUM}" != "${DEST_OBJ_1_CHKSUM}" ]; then
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 29 08:02:16 UTC 2024 - 11.4K bytes - Viewed (0) -
common/scripts/report_build_info.sh
HUB=${HUB:-"docker.io/istio"} # used by common/scripts/gobuild.sh echo "istio.io/istio/pkg/version.buildVersion=${VERSION:-$BUILD_GIT_REVISION}" echo "istio.io/istio/pkg/version.buildGitRevision=${BUILD_GIT_REVISION}" echo "istio.io/istio/pkg/version.buildStatus=${tree_status}" echo "istio.io/istio/pkg/version.buildTag=${GIT_DESCRIBE_TAG}" echo "istio.io/istio/pkg/version.buildHub=${HUB}" echo "istio.io/istio/pkg/version.buildOS=${BUILD_GOOS}"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue May 23 17:08:31 UTC 2023 - 1.9K bytes - Viewed (0) -
scripts/docs.py
Make sure you run the build-all command first. """ typer.echo("Warning: this is a very simple server.") typer.echo("For development, use the command live instead.") typer.echo("This is here only to preview a site with translations already built.") typer.echo("Make sure you run the build-all command first.") os.chdir("site") server_address = ("", 8008)
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 08 11:01:17 UTC 2024 - 13.5K 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) -
bin/init.sh
return fi echo curl does not support https, will try wget for downloading files. else echo curl is not installed, will try wget for downloading files. fi # Try wget. if command -v wget > /dev/null; then DOWNLOAD_COMMAND="wget -qO -" return fi echo wget is not installed.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jan 25 19:11:31 UTC 2024 - 6.1K bytes - Viewed (0) -
ci/official/utilities/setup.sh
done set -u echo '==TFCI==: Evaluated the following TFCI variables from $TFCI:' export -p | grep TFCI # Load those stored pre-existing TFCI_ vars, if any if [[ -s "$FROM_ENV" ]]; then echo '==TFCI==: NOTE: Loading the following env parameters, which were' echo 'already set in the shell environment. If you want to disable this' echo 'behavior, create a new shell.' cat "$FROM_ENV"
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Aug 07 23:01:25 UTC 2024 - 6K bytes - Viewed (0) -
src/packaging/common/scripts/preinst
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 01 09:48:15 UTC 2016 - 2.3K bytes - Viewed (0) -
integration-tests/gradle/gradlew.bat
set JAVA_EXE=java.exe %JAVA_EXE% -version >NUL 2>&1 if %ERRORLEVEL% equ 0 goto execute echo. echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. echo. echo Please set the JAVA_HOME variable in your environment to match the echo location of your Java installation. goto fail :findJavaFromJavaHome set JAVA_HOME=%JAVA_HOME:"=%
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 28 18:15:57 UTC 2023 - 2.7K bytes - Viewed (0) -
src/packaging/rpm/init.d/fess
fi echo -n $"Starting $prog: " # if not running, start it up here, usually something like "daemon $exec" daemon --user $FESS_USER --pidfile="$pidfile" $exec -d retval=$? pid=`ps aux | grep "^${FESS_USER}" | grep "${PROC_NAME}" | sed 's/[\t ]\+/\t/g' | cut -f2` if [ -n "$pid" ]; then echo $pid > "$pidfile" fi echo [ $retval -eq 0 ] && touch $lockfile
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 3.7K bytes - Viewed (0)