Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 117 for fileText (0.44 sec)

  1. src/go/internal/gcimporter/iimport.go

    // and returns the number of bytes consumed and a reference to the package.
    // If the export data version is not recognized or the format is otherwise
    // compromised, an error is returned.
    func iImportData(fset *token.FileSet, imports map[string]*types.Package, dataReader *bufio.Reader, path string) (pkg *types.Package, err error) {
    	const currentVersion = iexportVersionCurrent
    	version := int64(-1)
    	defer func() {
    		if e := recover(); e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/debug/elf/file_test.go

    	"math/rand"
    	"net"
    	"os"
    	"path"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"testing"
    )
    
    type fileTest struct {
    	file     string
    	hdr      FileHeader
    	sections []SectionHeader
    	progs    []ProgHeader
    	needed   []string
    	symbols  []Symbol
    }
    
    var fileTests = []fileTest{
    	{
    		"testdata/gcc-386-freebsd-exec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  5. 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)
  6. src/cmd/doc/pkg.go

    	doc         *doc.Package
    	build       *build.Package
    	typedValue  map[*doc.Value]bool // Consts and vars related to types.
    	constructor map[*doc.Func]bool  // Constructors.
    	fs          *token.FileSet      // Needed for printing.
    	buf         pkgBuffer
    }
    
    func (pkg *Package) ToText(w io.Writer, text, prefix, codePrefix string) {
    	d := pkg.doc.Parser().Parse(text)
    	pr := pkg.doc.Printer()
    	pr.TextPrefix = prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top