Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for jwttool (0.22 sec)

  1. tests/integration/security/fuzz/fuzz_test.go

    	pods, err := t.Clusters().Default().PodsForSelector(context.TODO(), ns, "app="+jwtTool)
    	if err != nil {
    		t.Fatalf("failed to get jwttool pod: %v", err)
    	}
    	t.Logf("running jwttool fuzz test against the %s (should normally complete in 10 seconds)...", server)
    
    	// Run the jwttool fuzz testing with "--mode at" to run all tests:
    	// - JWT Attack Playbook
    	// - Fuzz existing claims to force errors
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. src/cmd/vet/vet_test.go

    }
    
    var (
    	vetPathOnce sync.Once
    	vetExePath  string
    	vetPathErr  error
    )
    
    func vetCmd(t *testing.T, arg, pkg string) *exec.Cmd {
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), arg, path.Join("cmd/vet/testdata", pkg))
    	cmd.Env = os.Environ()
    	return cmd
    }
    
    func TestVet(t *testing.T) {
    	t.Parallel()
    	for _, pkg := range []string{
    		"appends",
    		"asm",
    		"assign",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/buildid.go

    	if id != "" {
    		return id
    	}
    
    	path := base.Tool(name)
    	desc := "go tool " + name
    
    	// Special case: undocumented -vettool overrides usual vet,
    	// for testing vet or supplying an alternative analysis tool.
    	if name == "vet" && VetTool != "" {
    		path = VetTool
    		desc = VetTool
    	}
    
    	cmdline := str.StringList(cfg.BuildToolexec, path, "-V=full")
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // The unitchecker package defines the main function for an analysis
    // driver that analyzes a single compilation unit during a build.
    // It is invoked by a build system such as "go vet":
    //
    //	$ go vet -vettool=$(which vet)
    //
    // It supports the following command-line protocol:
    //
    //	-V=full         describe executable               (to the build tool)
    //	-flags          describe flags                    (to the build tool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top