Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for myPmd (0.08 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/pmd/PmdPluginToolchainsIntegrationTest.groovy

                """dependencies.add("pmd", dependencies.create("$dependency"))"""
            }.join('\n')}
                FileCollection pmdFileCollection = configuration
    
                tasks.register("myPmd", Pmd) {
                    maxFailures = 0
                    source = fileTree("\$projectDir/src/main")
                    pmdClasspath = pmdFileCollection
                    ruleSetFiles = files()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 07:47:10 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/load/pkg.go

    func (p *Package) exeFromImportPath() string {
    	_, elem := pathpkg.Split(p.ImportPath)
    	if cfg.ModulesEnabled {
    		// If this is example.com/mycmd/v2, it's more useful to
    		// install it as mycmd than as v2. See golang.org/issue/24667.
    		if elem != p.ImportPath && isVersionElement(elem) {
    			_, elem = pathpkg.Split(pathpkg.Dir(p.ImportPath))
    		}
    	}
    	return elem
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top