- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 543 for effort (0.08 sec)
-
docs/iam/policies/pbac-tests.sh
API_KEY=$(grep "API Key" <kes-server.log | awk -F" " '{print $3}') (openssl s_client -connect 127.0.0.1:7373 2>/dev/null 1>public.crt) export CI=true export MINIO_KMS_KES_ENDPOINT=https://127.0.0.1:7373 export MINIO_KMS_KES_API_KEY="${API_KEY}" export MINIO_KMS_KES_KEY_NAME=minio-default-key export MINIO_KMS_KES_CAPATH=public.crt export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jun 25 01:15:27 UTC 2024 - 2.5K bytes - Viewed (0) -
common/scripts/gobuild.sh
V="" if [[ "${VERBOSE}" == "1" ]];then V="-x" set -x fi SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" OUT=${1:?"output path"} shift set -e export BUILD_GOOS=${GOOS:-linux} export BUILD_GOARCH=${GOARCH:-amd64} GOBINARY=${GOBINARY:-go} GOPKG="$GOPATH/pkg" BUILDINFO=${BUILDINFO:-""} STATIC=${STATIC:-1} LDFLAGS=${LDFLAGS:--extldflags -static} GOBUILDFLAGS=${GOBUILDFLAGS:-""}
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Oct 21 14:08:46 UTC 2022 - 2.4K bytes - Viewed (0) -
buildscripts/race.sh
#!/usr/bin/env bash set -e export GORACE="history_size=7" export MINIO_API_REQUESTS_MAX=10000 for d in $(go list ./...); do CGO_ENABLED=1 go test -v -race --timeout 100m "$d"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Jul 02 21:28:55 UTC 2024 - 184 bytes - Viewed (0) -
Makefile
# figure out all the tools you need in your environment to make that work. export BUILD_WITH_CONTAINER ?= 0 ifeq ($(BUILD_WITH_CONTAINER),1) # An export free of arguments in a Makefile places all variables in the Makefile into the # environment. This is needed to allow overrides from Makefile.overrides.mk. export RUN = ./common/scripts/run.sh
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 23 15:00:31 UTC 2024 - 2.3K bytes - Viewed (0) -
docs/site-replication/run-ssec-object-replication.sh
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 export MINIO_BROWSER=off export MINIO_ROOT_USER="minio" export MINIO_ROOT_PASSWORD="minio123" TEST_MINIO_ENC_KEY="MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDA" # Create certificates for TLS enabled MinIO
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 9.9K bytes - Viewed (0) -
buildscripts/cross-compile.sh
os="${arr[0]}" arch="${arr[1]}" package=$(go list -f '{{.ImportPath}}') printf -- "--> %15s:%s\n" "${osarch}" "${package}" # go build -trimpath to build the binary. export GOOS=$os export GOARCH=$arch export GO111MODULE=on go build -trimpath -tags kqueue -o /dev/null } function main() { echo "Testing builds for OS/Arch: ${SUPPORTED_OSARCH}" for each_osarch in ${SUPPORTED_OSARCH}; do
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Dec 19 01:08:22 UTC 2023 - 958 bytes - Viewed (0) -
docs/bucket/replication/test_del_marker_proxying.sh
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 2.2K bytes - Viewed (0) -
helm/minio/templates/_helper_policy.tpl
{{- $statements_length := len .statements -}} {{- $statements_length := sub $statements_length 1 -}} { "Version": "2012-10-17", "Statement": [ {{- range $i, $statement := .statements }} { "Effect": "{{ $statement.effect | default "Allow" }}", "Action": [ "{{ $statement.actions | join "\",\n\"" }}" ]{{ if $statement.resources }}, "Resource": [ "{{ $statement.resources | join "\",\n\"" }}" ]{{ end }}
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Aug 19 14:39:11 UTC 2023 - 872 bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
With this patch, the external provisioner can remove the finalizer in next reconcile loop. Unfortunately if the provious existing pv has the Failed state, this patch won't take effort. It requires users to remove finalizer. ([#126044](https://github.com/kubernetes/kubernetes/pull/126044), [@carlory](https://github.com/carlory)) [SIG Apps and Storage]
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Wed Oct 23 04:37:31 UTC 2024 - 375.1K bytes - Viewed (1) -
docs/compression/README.md
When set, environment variables override the defined `compress` config settings in the server config. ```bash export MINIO_COMPRESSION_ENABLE="on" export MINIO_COMPRESSION_EXTENSIONS=".txt,.log,.csv,.json,.tar,.xml,.bin" export MINIO_COMPRESSION_MIME_TYPES="text/*,application/json,application/xml" ``` > [!NOTE]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Mar 11 11:55:34 UTC 2024 - 5.1K bytes - Viewed (0)