- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 104 for 1_amd64 (0.1 sec)
-
api/go1.10.txt
pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT = 547 pkg syscall (freebsd-386-cgo), const SYS_UTIMENSAT ideal-int pkg syscall (freebsd-amd64), const SYS_UTIMENSAT = 547 pkg syscall (freebsd-amd64), const SYS_UTIMENSAT ideal-int pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT = 547 pkg syscall (freebsd-amd64-cgo), const SYS_UTIMENSAT ideal-int pkg syscall (freebsd-arm), const SYS_UTIMENSAT = 547
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Tue Feb 06 05:00:01 UTC 2018 - 30.1K bytes - Viewed (0) -
docs/lambda/README.md
... ... MinIO Object Storage Server Copyright: 2015-2023 MinIO, Inc. License: GNU AGPLv3 <https://www.gnu.org/licenses/agpl-3.0.html> Version: DEVELOPMENT.2023-02-05T05-17-27Z (go1.19.4 linux/amd64) ... ... Object Lambda ARNs: arn:minio:s3-object-lambda::function:webhook ``` ### Lambda Target with Auth Token
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Apr 04 19:15:28 UTC 2023 - 7.6K bytes - Viewed (0) -
README.md
Use the following command to download and run a standalone MinIO server on macOS. Replace ``/data`` with the path to the drive or directory in which you want MinIO to store data. ```sh wget https://dl.min.io/server/minio/release/darwin-amd64/minio chmod +x minio ./minio server /data ```
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sun Oct 13 13:34:11 UTC 2024 - 18.2K bytes - Viewed (0) -
docs/distributed/iam-import-with-missing-entities.sh
set -x fi pkill minio docker rm -f $(docker ps -aq) rm -rf /tmp/ldap{1..4} rm -rf /tmp/ldap1{1..4} if [ ! -f ./mc ]; then wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi mc -v # Start LDAP server echo "Copying docs/distributed/samples/bootstrap-complete.ldif => minio-iam-testing/ldap/50-bootstrap.ldif"
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Thu Sep 12 15:59:00 UTC 2024 - 4.5K bytes - Viewed (0) -
Dockerfile.release.old_cpu
curl -s -q https://dl.min.io/client/mc/release/linux-${TARGETARCH}/mc.sha256sum -o /go/bin/mc.sha256sum && \ chmod +x /go/bin/mc RUN if [ "$TARGETARCH" = "amd64" ]; then \ curl -L -s -q https://github.com/moparisthebest/static-curl/releases/latest/download/curl-${TARGETARCH} -o /go/bin/curl; \ chmod +x /go/bin/curl; \ fi
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sun Sep 15 23:10:23 UTC 2024 - 3.1K bytes - Viewed (0) -
docs/site-replication/run-multi-site-oidc.sh
minio server --address ":9003" --console-address ":12000" /tmp/minio3/{1...4} >/tmp/minio3_1.log 2>&1 & site3_pid=$! if [ ! -f ./mc ]; then wget -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi export MC_HOST_minio1=http://minio:minio123@localhost:9001 export MC_HOST_minio2=http://minio:minio123@localhost:9002 export MC_HOST_minio3=http://minio:minio123@localhost:9003
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Tue Sep 24 08:03:58 UTC 2024 - 8.5K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
// It returns nil if GOARCH is not recognized. func Set(GOARCH string, shared bool) *Arch { switch GOARCH { case "386": return archX86(&x86.Link386) case "amd64": return archX86(&x86.Linkamd64) case "arm": return archArm() case "arm64": return archArm64() case "loong64": return archLoong64(&loong64.Linkloong64) case "mips": return archMips(&mips.Linkmips)
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Thu Oct 24 12:32:56 UTC 2024 - 21.5K bytes - Viewed (0) -
doc/asm.html
#include "go_tls.h" #include "go_asm.h" ... get_tls(CX) MOVL g(CX), AX // Move g into AX. MOVL g_m(AX), BX // Move g.m into BX. </pre> <p> The <code>get_tls</code> macro is also defined on <a href="#amd64">amd64</a>. </p> <p> Addressing modes: </p> <ul> <li> <code>(DI)(BX*2)</code>: The location at address <code>DI</code> plus <code>BX*2</code>. </li> <li>
Registered: Tue Oct 29 11:13:09 UTC 2024 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (1) -
buildscripts/disable-root.sh
for ((i = 0; i < $((nr_servers)); i++)); do (minio server --address ":$((9100 + i))" $args 2>&1 >/tmp/log$i.txt) & done sleep 10s if [ ! -f ./mc ]; then wget --quiet -O ./mc https://dl.minio.io/client/mc/release/linux-amd64/./mc && chmod +x mc fi set +e export MC_HOST_minioadm=http://minioadmin:minioadmin@localhost:9100/ ./mc ready minioadm ./mc ls minioadm/ ./mc admin config set minioadm/ api root_access=off
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 3.5K bytes - Viewed (0) -
buildscripts/minio-iam-ldap-upgrade-import-test.sh
# # `localhost:1389` # # if this is not the case, set the environment variable # `_MINIO_LDAP_TEST_SERVER`. OLD_VERSION=RELEASE.2024-03-26T22-10-45Z OLD_BINARY_LINK=https://dl.min.io/server/minio/release/linux-amd64/archive/minio.${OLD_VERSION} __init__() { if which curl &>/dev/null; then echo "curl is already installed" else echo "Installing curl:" sudo apt install curl -y fi export GOPATH=/tmp/gopath
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 3.4K bytes - Viewed (0)