- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 588 for expiry (0.28 sec)
-
cmd/encryption-v1_test.go
} } } var decryptObjectMetaTests = []struct { info ObjectInfo request *http.Request expErr error }{ { info: ObjectInfo{Size: 100}, request: &http.Request{Header: http.Header{}}, expErr: nil, }, { info: ObjectInfo{Size: 100, UserDefined: map[string]string{crypto.MetaAlgorithm: crypto.InsecureSealAlgorithm}},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Sep 24 04:17:08 UTC 2022 - 19.9K bytes - Viewed (0) -
docs/distributed/README.md
```sh export MINIO_ROOT_USER=<ACCESS_KEY> export MINIO_ROOT_PASSWORD=<SECRET_KEY> minio server http://host{1...n}/export{1...m} http://host{o...z}/export{1...m} ``` For example: ``` minio server http://host{1...4}/export{1...16} http://host{5...12}/export{1...16} ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Jan 18 07:03:17 UTC 2024 - 8.8K bytes - Viewed (0) -
docs/distributed/decom-compressed-sse-s3.sh
chmod +x mc fi export CI=true export MINIO_COMPRESSION_ENABLE="on" export MINIO_COMPRESSION_EXTENSIONS=".go" export MINIO_COMPRESSION_MIME_TYPES="application/*" export MINIO_COMPRESSION_ALLOW_ENCRYPTION="on" export MINIO_KMS_AUTO_ENCRYPTION=on export MINIO_KMS_SECRET_KEY=my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw= export MC_HOST_myminio="http://minioadmin:minioadmin@localhost:9000/"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/logging/README.md
``` export MINIO_AUDIT_WEBHOOK_ENABLE_target1="on" export MINIO_AUDIT_WEBHOOK_AUTH_TOKEN_target1="token" export MINIO_AUDIT_WEBHOOK_ENDPOINT_target1=http://localhost:8080/minio/logs export MINIO_AUDIT_WEBHOOK_CLIENT_CERT="/tmp/cert.pem" export MINIO_AUDIT_WEBHOOK_CLIENT_KEY=="/tmp/key.pem" minio server /mnt/data ```
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu May 09 17:15:03 UTC 2024 - 10.4K bytes - Viewed (0) -
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) -
cmd/object-api-datatypes.go
Inlined bool DataBlocks int ParityBlocks int } // ExpiresStr returns a stringified version of Expires header in http.TimeFormat func (o ObjectInfo) ExpiresStr() string { var expires string if !o.Expires.IsZero() { expires = o.Expires.UTC().Format(http.TimeFormat) } return expires } // ArchiveInfo returns any saved zip archive meta information. // It will be decrypted if needed.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:31:51 UTC 2024 - 20.9K 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) -
src/main/java/jcifs/smb1/dcerpc/msrpc/samr.idl
ACB_WSTRUST = 0x00000080, /* 1 = Workstation trust account */ ACB_SVRTRUST = 0x00000100, /* 1 = Server trust account */ ACB_PWNOEXP = 0x00000200, /* 1 = User password does not expire */ ACB_AUTOLOCK = 0x00000400, /* 1 = Account auto locked */ ACB_ENC_TXT_PWD_ALLOWED = 0x00000800, /* 1 = Encryped text password is allowed */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 3.1K 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)