Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 126 for fileset (0.38 sec)

  1. pkg/test/datasets/Readme.md

        {
          "Metadata": {
            "name": "outout-resource-2"
          },
          "Body": {}
        }
      ]
    }
    ```
    
    To add a new test data fileset:
     1. Create a new, appropriately named folder under dataset.
     2. Create the input, expected, and (optionally) the mesh config files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  2. src/go/printer/example_test.go

    package printer_test
    
    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/printer"
    	"go/token"
    	"strings"
    )
    
    func parseFunc(filename, functionname string) (fun *ast.FuncDecl, fset *token.FileSet) {
    	fset = token.NewFileSet()
    	if file, err := parser.ParseFile(fset, filename, nil, 0); err == nil {
    		for _, d := range file.Decls {
    			if f, ok := d.(*ast.FuncDecl); ok && f.Name.Name == functionname {
    				fun = f
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:55:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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