Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for target_uri (0.15 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/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)
  4. 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)
  5. 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)
  6. pkg/volume/csi/csi_mounter.go

    			}
    			publishContext = c.publishContext
    		}
    
    	default:
    		return fmt.Errorf("volume source not found in volume.Spec")
    	}
    
    	// create target_dir before call to NodePublish
    	parentDir := filepath.Dir(dir)
    	if err := os.MkdirAll(parentDir, 0750); err != nil {
    		return errors.New(log("mounter.SetUpAt failed to create dir %#v:  %v", parentDir, err))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 30 10:47:59 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. cmd/object-handlers_test.go

    		object := oi.objectName
    
    		queries := url.Values{}
    		queries.Add("partNumber", strconv.Itoa(partNumber))
    		targetURL := makeTestTargetURL("", bucketName, object, queries)
    		req, err := newTestSignedRequestV4(http.MethodGet, targetURL,
    			0, nil, credentials.AccessKey, credentials.SecretKey, oi.metaData)
    		if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
Back to top