Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 363 for INSECURE (0.16 sec)

  1. src/cmd/go/internal/vcweb/insecure.go

    type insecureHandler struct{}
    
    func (h *insecureHandler) Available() bool { return true }
    
    func (h *insecureHandler) Handler(dir string, env []string, logger *log.Logger) (http.Handler, error) {
    	// The insecure-redirect handler implementation doesn't depend or dir or env.
    	//
    	// The only effect of the directory is to determine which prefix the caller
    	// will strip from the request before passing it on to this handler.
    	return h, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/go/insecure.txt

    handle dir
    
    -- index.html --
    <!DOCTYPE html>
    <html>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 176 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/insecure.txt

    handle insecure...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 16 bytes
    - Viewed (0)
  4. releasenotes/notes/wasm-insecure-all.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: extensibility
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 19:55:27 UTC 2022
    - 219 bytes
    - Viewed (0)
  5. releasenotes/notes/wasm-https-insecure-support.yaml

    Ingwon Song <******@****.***> 1651717439 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 05 02:23:59 UTC 2022
    - 235 bytes
    - Viewed (0)
  6. docs/site-replication/run-ssec-object-replication.sh

    count1=$(./mc ls minio1/test-bucket/plainfile --insecure | wc -l)
    if [ "${count1}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/plainfile not found"
    	exit_1
    fi
    count2=$(./mc ls minio1/test-bucket/encrypted --insecure | wc -l)
    if [ "${count2}" -ne 1 ]; then
    	echo "BUG: object minio1/test-bucket/encrypted not found"
    	exit_1
    fi
    count3=$(./mc ls minio1/test-bucket/defpartsize --insecure | wc -l)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_download_insecure_redirect.txt

    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    
    # insecure multiple host
    env GOINSECURE=somewhere-else.com,*.golang.org
    go clean -modcache
    go mod download vcs-test.golang.org/insecure/go/insecure@latest
    
    # different insecure host does not fetch
    env GOINSECURE=somewhere-else.com
    go clean -modcache
    ! go mod download vcs-test.golang.org/insecure/go/insecure@latest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 934 bytes
    - Viewed (0)
  8. src/cmd/go/internal/web/http.go

    			if cfg.BuildX {
    				fmt.Fprintf(os.Stderr, "# get %s: insecure credentials\n", insecure.Redacted())
    			}
    			return nil, fmt.Errorf("refusing to pass credentials to insecure URL: %s", insecure.Redacted())
    		}
    
    		res, err = fetch(insecure)
    		if err == nil {
    			fetched = insecure
    		} else {
    			if cfg.BuildX {
    				fmt.Fprintf(os.Stderr, "# get %s: %v\n", insecure.Redacted(), err)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_get_insecure_redirect.txt

    # golang.org/issue/61877: 'go get' would panic in case of an insecure redirect in module mode
    
    [!git] skip
    
    env GOPRIVATE=vcs-test.golang.org
    
    ! go get -d vcs-test.golang.org/insecure/go/insecure
    stderr 'redirected .* to insecure URL'
    
    [short] stop 'builds a git repo'
    
    env GOINSECURE=vcs-test.golang.org/insecure/go/insecure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:25 UTC 2023
    - 538 bytes
    - Viewed (0)
  10. 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)
Back to top