Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for fileText (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    The chapter on <<ant#ant,Ant integration>> has examples that use both `<path>` and `<fileset>`.
    There is also link:{javadocPath}/org/gradle/api/file/FileCollection.html#addToAntBuilder-java.lang.Object-java.lang.String-org.gradle.api.file.FileCollection.AntType-[a method on `FileCollection`] that will convert a file collection to a fileset or similar Ant type.
    --
    
    [[migant:properties]]
    == Migrating Ant properties
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * Consider following example of ant target:
         * <pre>
         * &lt;target name='printChecksum'&gt;
         *   &lt;checksum property='checksumOut'&gt;
         *     &lt;fileset dir='.'&gt;
         *       &lt;include name='agile.txt'/&gt;
         *     &lt;/fileset&gt;
         *   &lt;/checksum&gt;
         *   &lt;echo&gt;The checksum is: ${checksumOut}&lt;/echo&gt;
         * &lt;/target&gt;
         * </pre>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

            return "Scm {connection=" + getConnection() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>FileSet</name>
          <version>3.0.0+</version>
          <superClass>PatternSet</superClass>
          <description>A PatternSet for files.</description>
          <fields>
            <field>
              <name>directory</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/go/types/issues_test.go

    	const w = 1        // defs w
            x, y := 2, 3       // defs x, y
            w, x, z := 4, 5, 6 // uses w, x, defs z; error: cannot assign to w
            _, _, _ = x, y, z  // uses x, y, z
    }
    `
    	// We need a specific fileset in this test below for positions.
    	// Cannot use typecheck helper.
    	fset := token.NewFileSet()
    	f := mustParse(fset, src)
    
    	const want = `L3 defs func p._()
    L4 defs const w untyped int
    L5 defs var x int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. src/go/build/build.go

    var dummyPkg Package
    
    // fileInfo records information learned about a file included in a build.
    type fileInfo struct {
    	name       string // full name including dir
    	header     []byte
    	fset       *token.FileSet
    	parsed     *ast.File
    	parseErr   error
    	imports    []fileImport
    	embeds     []fileEmbed
    	directives []Directive
    }
    
    type fileImport struct {
    	path string
    	pos  token.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. src/cmd/cover/cover.go

    	counterVar string
    }
    
    // File is a wrapper for the state of a file used in the parser.
    // The basic parse tree walker is a method of this type.
    type File struct {
    	fset    *token.FileSet
    	name    string // Name of file.
    	astFile *ast.File
    	blocks  []Block
    	content []byte
    	edit    *edit.Buffer
    	mdb     *encodemeta.CoverageMetaDataBuilder
    	fn      Func
    	pkg     *Package
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"(*File).Size", Method, 0},
    		{"(*FileSet).AddFile", Method, 0},
    		{"(*FileSet).Base", Method, 0},
    		{"(*FileSet).File", Method, 0},
    		{"(*FileSet).Iterate", Method, 0},
    		{"(*FileSet).Position", Method, 0},
    		{"(*FileSet).PositionFor", Method, 4},
    		{"(*FileSet).Read", Method, 0},
    		{"(*FileSet).RemoveFile", Method, 20},
    		{"(*FileSet).Write", Method, 0},
    		{"(*Position).IsValid", Method, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    	"internal/testenv"
    	"reflect"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    
    	. "go/types"
    )
    
    // nopos indicates an unknown position
    var nopos token.Pos
    
    func mustParse(fset *token.FileSet, src string) *ast.File {
    	f, err := parser.ParseFile(fset, pkgName(src), src, parser.ParseComments)
    	if err != nil {
    		panic(err) // so we don't need to pass *testing.T
    	}
    	return f
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
Back to top