Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 282 for fileset (0.14 sec)

  1. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-profile/pom.xml

                <configuration>
                  <propertiesFile>target/config.properties</propertiesFile>
                  <domParam>
                    <copy todir="src" overwrite="true">
                      <fileset dir="target"/>
                    </copy>
                  </domParam>
                </configuration>
              </plugin>
            </plugins>
          </build>
        </profile>
      </profiles>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileCollection.java

         * the given node name. The patterns are added using 'include' and 'exclude' nodes.</li>
         *
         * <li>{@link AntType#FileSet}: adds this collection as zero or more Ant FileSets with the given node name.</li>
         *
         * <li>{@link AntType#ResourceCollection}: adds this collection as zero or more Ant ResourceCollections with the
         * given node name.</li>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 15:51:59 UTC 2021
    - 8.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

        String includes = '**/*.groovy **/*.java'
    
        void findSamples(String dir, Closure runner) {
            def sources = findDir(dir)
            def ant = new AntBuilder()
    
            def list = ant.fileScanner {
                fileset(dir: sources, includes: includes)
            }
    
            list.each() { runSamplesFromFile(it, runner) }
        }
    
        static String findDir(String dir) {
            def workDir = SystemProperties.instance.currentDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-config-attributes/w-plugin-mgmt/pom.xml

            <version>2.1-SNAPSHOT</version>
            <configuration>
              <propertiesFile>target/config.properties</propertiesFile>
              <domParam>
                <copy todir="src" overwrite="true">
                  <fileset dir="target"/>
                </copy>
              </domParam>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectTest.groovy

            project.ant.is(project.ant)
        }
    
        def ant() {
            given:
            Closure configureClosure = { fileset(dir: 'dir', id: 'fileset') }
            when:
            project.ant(configureClosure)
            then:
            project.ant.project.getReference('fileset') instanceof FileSet
        }
    
        def createAntBuilder() {
            expect:
            project.createAntBuilder().is(testAntBuilder)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/argposition_test.go

    type ShortPosition struct {
    	Line    int
    	Column  int
    	Visited bool
    }
    
    type IdentPositionInfo map[string][]ShortPosition
    
    type Visitor struct {
    	identPosInfo IdentPositionInfo
    	fset         *token.FileSet
    	t            *testing.T
    }
    
    func (v *Visitor) Visit(node ast.Node) ast.Visitor {
    	if ident, ok := node.(*ast.Ident); ok {
    		if expectedPositions, ok := v.identPosInfo[ident.Name]; ok {
    			gotMatch := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 01:37:31 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/go/types/self_test.go

    	}
    
    	var files []*ast.File
    	for _, filename := range filenames {
    		file, err := parser.ParseFile(fset, filename, nil, 0)
    		if err != nil {
    			return nil, err
    		}
    		files = append(files, file)
    	}
    
    	return files, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:39:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            testDir == fileTree.dir
        }
    
        def testFileSetConstructionWithNoBaseDirSpecified() {
            DefaultConfigurableFileTree fileSet = new DefaultConfigurableFileTree(fileResolverStub, listener, TestFiles.patternSetFactory, taskDependencyFactory, directoryFileTreeFactory())
    
            when:
            fileSet.contains(new File('unknown'))
            then:
            thrown(InvalidUserDataException)
        }
    
        def testCanVisitStructure() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/go/importer/importer_test.go

    		pkg, err := imp.Import(thePackage)
    		if err != nil {
    			t.Fatal(err)
    		}
    		if pkg.Path() != thePackage {
    			t.Fatalf("Path() = %q, want %q", pkg.Path(), thePackage)
    		}
    
    		// Check that the fileset positions are accurate.
    		// https://github.com/golang/go#28995
    		mathBigInt := pkg.Scope().Lookup("Int")
    		posn := fset.Position(mathBigInt.Pos()) // "$GOROOT/src/math/big/int.go:25:1"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 21:16:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. src/go/doc/doc_test.go

    		t.Run(pkg.Name, func(t *testing.T) {
    			importPath := dataDir + "/" + pkg.Name
    			var files []*ast.File
    			for _, f := range pkg.Files {
    				files = append(files, f)
    			}
    			doc, err := NewFromFiles(fset, files, importPath, mode)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			// golden files always use / in filenames - canonicalize them
    			for i, filename := range doc.Filenames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:52 UTC 2022
    - 6.7K bytes
    - Viewed (0)
Back to top