Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for target_uri (0.11 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
Back to top