Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for jwttool (1.51 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. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

            return toolSearchPath.locate(compilerType, toolRegistry.getTool(compilerType).getExecutable());
        }
    
        @Override
        protected Compiler<CppCompileSpec> createCppCompiler() {
            GccCommandLineToolConfigurationInternal cppCompilerTool = toolRegistry.getTool(ToolType.CPP_COMPILER);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            switch (compilerType) {
                case C_COMPILER:
                case CPP_COMPILER:
                    return new CommandLineToolSearchResult() {
                        @Override
                        public File getTool() {
                            return visualCpp.getCompilerExecutable();
                        }
    
                        @Override
                        public boolean isAvailable() {
                            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def execActionFactory = Mock(ExecActionFactory)
        def toolSearchPath = Stub(ToolSearchPath)
        def tool = Stub(CommandLineToolSearchResult) {
            isAvailable() >> true
            getTool() >> new File("tool")
        }
        def missing = Stub(CommandLineToolSearchResult) {
            isAvailable() >> false
        }
        def correctCompiler = new ComponentFound(Stub(GccMetadata))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                if (compiler.isAvailable()) {
                    SearchResult<GccMetadata> gccMetadata = getMetaDataProvider().getCompilerMetaData(toolSearchPath.getPath(), spec -> spec.executable(compiler.getTool()).args(platformToolChain.getCompilerProbeArgs()));
                    availability.mustBeAvailable(gccMetadata);
                    if (!gccMetadata.isAvailable()) {
                        return;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
Back to top