Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for target_uri (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top