Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for myPmd (0.04 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/testdata/script/install_cleans_build.txt

    cd mycmd
    go build
    exists mycmd$GOEXE
    go install
    ! exists mycmd$GOEXE
    
    # 'go install mycmd' does not clean up, even in the mycmd directory
    go build
    exists mycmd$GOEXE
    go install mycmd
    exists mycmd$GOEXE
    
    # 'go install mycmd' should not clean up in an unrelated current directory either
    cd ..
    cp mycmd/mycmd$GOEXE mycmd$GOEXE
    go install mycmd
    exists mycmd$GOEXE
    
    -- mycmd/main.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 507 bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg_test.go

    		wantMod    string
    		wantGopath string
    	}{
    		{"example.com/mycmd", []string{}, "mycmd", "mycmd"},
    		{"example.com/mycmd/v0", []string{}, "v0", "v0"},
    		{"example.com/mycmd/v1", []string{}, "v1", "v1"},
    		{"example.com/mycmd/v2", []string{}, "mycmd", "v2"}, // Semantic import versioning, use second last element in module mode.
    		{"example.com/mycmd/v3", []string{}, "mycmd", "v3"}, // Semantic import versioning, use second last element in module mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/install_rebuild_removed.txt

    go install mycmd
    ! stale mycmd
    rm mycmd/z.go
    ! stale mycmd
    rm mycmd/y.go
    stale mycmd
    
    -- mypkg/x.go --
    package mypkg
    
    -- mypkg/y.go --
    package mypkg
    
    -- mypkg/z.go --
    // +build missingtag
    
    package mypkg
    
    -- mycmd/x.go --
    package main
    func main() {}
    
    -- mycmd/y.go --
    package main
    
    -- mycmd/z.go --
    // +build missingtag
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 19 19:57:03 UTC 2019
    - 688 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/install_cross_gobin.txt

    [short] skip # rebuilds std for alternate architecture
    
    cd mycmd
    go build mycmd
    
    # cross-compile install with implicit GOBIN=$GOPATH/bin can make subdirectory
    env GOARCH=386
    [GOARCH:386] env GOARCH=amd64
    env GOOS=linux
    go install mycmd
    exists $GOPATH/bin/linux_$GOARCH/mycmd
    
    # cross-compile install with explicit GOBIN cannot make subdirectory
    env GOBIN=$WORK/bin
    ! go install mycmd
    ! exists $GOBIN/linux_$GOARCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 667 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/build_cache_arch_mode.txt

    # Issue 9737: verify that GOARM affects the computed build ID
    
    [short] skip
    
    # arm
    env GOOS=linux
    env GOARCH=arm
    env GOARM=5
    go install mycmd
    env GOARM=7
    stale mycmd
    
    
    -- go.mod --
    module mycmd
    
    go 1.16
    -- x.go --
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 02 08:52:16 UTC 2020
    - 243 bytes
    - Viewed (0)
  7. 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