Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for target_uri (0.14 sec)

  1. tools/packaging/common/gcp_envoy_bootstrap.json

          "ads": {}
        },
        "ads_config": {
          "api_type": "GRPC",
          "transport_api_version": "V3",
          "grpc_services": [
            {
              "google_grpc": {
                "target_uri": "{{ .discovery_address }}",
                "stat_prefix": "googlegrpcxds",
                "channel_credentials": {
                  "ssl_credentials": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/credentialprovider/keyring_test.go

    			targetURL: "prefix.docker.io",
    		},
    		{
    			globURL:   "https://prefix.docker.*",
    			targetURL: "prefix.docker.io",
    		},
    		{
    			globURL:   "https://*.docker.io/path",
    			targetURL: "prefix.docker.io/path",
    		},
    		{
    			globURL:   "https://prefix.*.io/path",
    			targetURL: "prefix.docker.io/path/subpath",
    		},
    		{
    			globURL:   "https://prefix.docker.*/path",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

            } else {
                hash = StringUtil.EMPTY;
            }
    
            if (!isFileSystemPath(targetUrl)) {
                return HtmlResponse.fromRedirectPathAsIs(DocumentUtil.encodeUrl(targetUrl + hash));
            }
            if (!fessConfig.isSearchFileProxyEnabled()) {
                return HtmlResponse.fromRedirectPathAsIs(targetUrl + hash);
            }
            final ViewHelper viewHelper = ComponentUtil.getViewHelper();
            try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. pkg/credentialprovider/keyring.go

    	if err != nil {
    		return false, err
    	}
    	targetURL, err := ParseSchemelessURL(target)
    	if err != nil {
    		return false, err
    	}
    	return URLsMatch(globURL, targetURL)
    }
    
    // URLsMatch checks whether the given target url matches the glob url, which may have
    // glob wild cards in the host name.
    //
    // Examples:
    //
    //	globURL=*.docker.io, targetURL=blah.docker.io => match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  5. pkg/volume/git_repo/git_repo_test.go

    						Revision:   revision,
    						Directory:  "target_dir",
    					},
    				},
    			},
    			expecteds: []expectedCommand{
    				{
    					cmd: []string{"git", "clone", "--", gitURL, "target_dir"},
    					dir: "",
    				},
    				{
    					cmd: []string{"git", "checkout", revision},
    					dir: "/target_dir",
    				},
    				{
    					cmd: []string{"git", "reset", "--hard"},
    					dir: "/target_dir",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 08:26:26 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/istio-agent/health/health_probers.go

    		headers[val.Name] = append(headers[val.Name], val.Value)
    	}
    	targetURL, err := url.Parse(h.Config.Path)
    	// Something is busted with the path, but it's too late to reject it. Pass it along as is.
    	if err != nil {
    		targetURL = &url.URL{
    			Path: h.Config.Path,
    		}
    	}
    	targetURL.Scheme = h.Config.Scheme
    	targetURL.Host = net.JoinHostPort(h.Config.Host, strconv.Itoa(int(h.Config.Port)))
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/proxy/transport.go

    	}
    
    	if redirect := resp.Header.Get("Location"); redirect != "" {
    		targetURL, err := url.Parse(redirect)
    		if err != nil {
    			return nil, errors.NewInternalError(fmt.Errorf("error trying to parse Location header: %v", err))
    		}
    		resp.Header.Set("Location", t.rewriteURL(targetURL, req.URL, req.Host))
    		return resp, nil
    	}
    
    	cType := resp.Header.Get("Content-Type")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. tests/integration/security/fuzz/fuzzers/jwt_tool/jwtconf.ini

    [input]
    wordlist = jwt-common.txt
    commonHeaders = common-headers.txt
    commonPayloads = common-payloads.txt
    
    [argvals]
    # Set at runtime - changes here are ignored
    sigType =
    targetUrl =
    cookies =
    key =
    keyList =
    keyFile =
    headerLoc =
    payloadclaim =
    headerclaim =
    payloadvalue =
    headervalue =
    canaryvalue =
    header =
    exploitType =
    scanMode =
    reqMode =
    postData =
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 21 20:06:01 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. tests/fuzz/oss_fuzz_build.sh

    # limitations under the License.
    
    set -o nounset
    set -o pipefail
    set -o errexit
    set -x
    
    cd "${SRC}"
    git clone https://github.com/AdamKorcz/instrumentation
    cd instrumentation
    go run main.go --target_dir="${SRC}"/istio --check_io_length=true
    cd "${SRC}"/istio
    
    sed -i 's/\"testing\"/\"github.com\/AdamKorcz\/go-118-fuzz-build\/testing\"/g' "${SRC}"/istio/pkg/fuzz/util.go
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 15:50:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. tests/integration/security/fuzz/fuzz_test.go

    	// Run the jwttool fuzz testing with "--mode at" to run all tests:
    	// - JWT Attack Playbook
    	// - Fuzz existing claims to force errors
    	// - Fuzz common claims
    	commands := []string{
    		"./run.sh",
    		"--targeturl",
    		fmt.Sprintf("http://%s:8080/private/secret.html", server),
    		"--noproxy",
    		"--headers",
    		fmt.Sprintf("Authorization: Bearer %s", jwtToken),
    		"--mode",
    		"at",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top