Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 605 for Insecure (0.59 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. src/cmd/go/internal/web/http.go

    		}
    
    		insecure := new(urlpkg.URL)
    		*insecure = *url
    		insecure.Scheme = "http"
    		if insecure.User != nil && security != Insecure {
    			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)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/InsecureProtocolOption.java

         */
        WARN,
    
        /**
         * Allow insecure protocols to be used when found.
         *
         * The generated Gradle build will not fail, but it will allow insecure protocols to be used.
         */
        ALLOW,
    
        /**
         * Upgrade an insecure protocol to a secure one.
         *
         * The generated Gradle build will not fail, but the repository may not be usable over a secure protocol.
         */
        UPGRADE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. 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)
Back to top