Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 605 for Insecure (0.19 sec)

  1. docs/bucket/versioning/versioning-tests.sh

    ./mc ready sitea
    
    ./mc mb sitea/delissue --insecure
    
    ./mc version enable sitea/delissue --insecure
    
    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    ./mc rm sitea/delissue/hello --insecure
    
    ./mc version enable sitea/delissue --insecure
    
    echo hello | ./mc pipe sitea/delissue/hello --insecure
    
    ./mc version suspend sitea/delissue --insecure
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. docs/site-replication/run-sse-kms-object-replication.sh

    ./mc cp /tmp/data/mpartobj minio1/test-bucket/mpartobj --enc-c "minio1/test-bucket/mpartobj=${TEST_MINIO_ENC_KEY}" --insecure
    ./mc cp /tmp/data/defpartsize minio1/test-bucket --insecure
    ./mc put /tmp/data/custpartsize minio1/test-bucket --insecure --part-size 50MiB
    sleep 120
    
    # List the objects from source site
    echo "Objects from source instance"
    ./mc ls minio1/test-bucket --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/get_insecure.txt

    env GO111MODULE=on
    env GOPROXY=''
    
    # Modules: Try go get -d of HTTP-only repo (should fail).
    ! go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try again with GOINSECURE (should succeed).
    env GOINSECURE=insecure.go-get-issue-15410.appspot.com
    env GONOSUMDB=insecure.go-get-issue-15410.appspot.com
    go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try updating without GOINSECURE (should fail).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 937 bytes
    - Viewed (0)
  4. docs/site-replication/run-ssec-object-replication-with-compression.sh

    ./mc admin config set minio1 compression allow_encryption=off --insecure
    
    # Create bucket in source cluster
    echo "Create bucket in source MinIO instance"
    ./mc mb minio1/test-bucket --insecure
    
    # Load objects to source site
    echo "Loading objects to source MinIO instance"
    ./mc cp /tmp/data/plainfile minio1/test-bucket --insecure
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/get_insecure_no_longer_supported.txt

    # GOPATH: Set up
    env GO111MODULE=off
    
    # GOPATH: Fetch with insecure, should error
    ! go get -insecure test
    stderr 'go: -insecure flag is no longer supported; use GOINSECURE instead'
    
    # Modules: Set up
    env GO111MODULE=on
    
    # Modules: Fetch with insecure, should error
    ! go get -insecure test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 364 bytes
    - Viewed (0)
  6. docs/debugging/s3-verify/main.go

    	debug                                            bool
    	insecure                                         bool
    )
    
    func buildS3Client(endpoint, accessKey, secretKey string, insecure bool) (*minio.Client, error) {
    	u, err := url.Parse(endpoint)
    	if err != nil {
    		return nil, err
    	}
    
    	secure := strings.EqualFold(u.Scheme, "https")
    	transport, err := minio.DefaultTransport(secure)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/DefaultUrlArtifactRepository.java

                contextualAdvice = "";
            }
            throw new InsecureProtocolException(
                "Redirecting from secure protocol to insecure protocol, without explicit opt-in, is unsupported." + contextualAdvice,
                String.format("Switch %s repository '%s' to redirect to a secure protocol (like HTTPS) or allow insecure protocols. ", repositoryType, displayNameSupplier.get()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/UrlArtifactRepository.java

         * <p>
         * For security purposes this intentionally requires a user to opt-in to using insecure protocols on case by case basis.
         * <p>
         * Gradle intentionally does not offer a global system/gradle property that allows a universal disable of this check.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 24 17:16:12 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/git/insecurerepo.txt

    git log --oneline --decorate=short
    cmp stdout .git-log
    
    -- .git-log --
    6fecd21 (HEAD -> master) main: add Go source file
    d1a15cd all: initialize module
    -- go.mod --
    module vcs-test.golang.org/insecure/go/insecure
    
    go 1.13
    -- main.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 641 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/resources/DefaultTextResourceFactory.java

        }
    
        private static void throwExceptionDueToInsecureProtocol(URI rootUri) {
            throw new InsecureProtocolException(
                "Loading a TextResource from an insecure URI, without explicit opt-in, is unsupported. " + String.format("The provided URI '%s' uses an insecure protocol (HTTP). ", rootUri),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top