Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for fileText (0.14 sec)

  1. apache-maven/src/assembly/component.xml

          <lineEnding>unix</lineEnding>
          <fileMode>0755</fileMode>
        </fileSet>
        <fileSet>
          <directory>src/assembly/maven/conf</directory>
          <outputDirectory>conf</outputDirectory>
        </fileSet>
        <fileSet>
          <directory>src/assembly/maven/lib</directory>
          <outputDirectory>lib</outputDirectory>
        </fileSet>
      </fileSets>
    
      <files>
        <file>
          <sources>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Jun 04 19:03:41 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileCollectionAdapterTest.groovy

        def delegatesToTargetCollectionToBuildSetOfFiles() {
            MinimalFileSet fileSet = Mock()
            FileCollectionAdapter adapter = new FileCollectionAdapter(fileSet)
            def expectedFiles = [new File('a'), new File('b')] as Set
    
            when:
            def files = adapter.files
    
            then:
            files == expectedFiles
            1 * fileSet.getFiles() >> expectedFiles
            0 * _._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/project-with-source/build.xml

                    <fileset dir="\${lib.dir}"/>
                </classpath>
            </javac>
        </target>
    
        <target name="test" depends="compile, compileTest">
            <mkdir dir="\${test.reports.dir}"/>
            <junit>
                <classpath>
                    <path location="\${test.classes.dir}"/>
                    <path location="\${classes.dir}"/>
                    <fileset dir="\${lib.dir}"/>
                </classpath>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ant/useExternalAntTask/kotlin/build.gradle.kts

                    "classpath" {
                        "fileset"("dir" to "libs", "includes" to "*.jar")
                    }
                }
                "checkstyle"("config" to checkstyleConfig) {
                    "fileset"("dir" to "src")
                }
            }
        }
    }
    // end::configure-task[]
    
    tasks.named("check") {
        dependsOn(download)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 837 bytes
    - Viewed (0)
  5. src/go/importer/importer.go

    		}
    
    		return srcimporter.New(&build.Default, fset, make(map[string]*types.Package))
    	}
    
    	// compiler not supported
    	return nil
    }
    
    // For calls [ForCompiler] with a new FileSet.
    //
    // Deprecated: Use [ForCompiler], which populates a FileSet
    // with the positions of objects created by the importer.
    func For(compiler string, lookup Lookup) types.Importer {
    	return ForCompiler(token.NewFileSet(), compiler, lookup)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ant/useExternalAntTask/groovy/build.gradle

        doLast {
            ant.taskdef(resource: 'com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties') {
                classpath {
                    fileset(dir: 'libs', includes: '*.jar')
                }
            }
            ant.checkstyle(config: checkstyleConfig) {
                fileset(dir: 'src')
            }
        }
    }
    // end::configure-task[]
    
    tasks.named('check') {
        dependsOn(download)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 745 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/ant/taskWithNestedElements/groovy/build.gradle

    tasks.register('zip') {
        doLast {
            ant.zip(destfile: 'archive.zip') {
                fileset(dir: 'src') {
                    include(name: '**.xml')
                    exclude(name: '**.java')
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/putvarabbrevgen_test.go

    	}
    
    	fmt.Fprint(buf, "\n}\n\n")
    
    	fmt.Fprint(buf, "func putAbstractVarAbbrev(v *Var) int {\n")
    	format.Node(buf, &token.FileSet{}, funcs["putAbstractVarAbbrev"])
    	fmt.Fprint(buf, "}\n\n")
    
    	fmt.Fprint(buf, "func putvarAbbrev(v *Var, concrete, withLoclist bool) int {\n")
    	format.Node(buf, &token.FileSet{}, funcs["putvarAbbrev"])
    	fmt.Fprint(buf, "}\n")
    
    	out, err := format.Source(buf.Bytes())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ant/useAntType/kotlin/build.gradle.kts

    import org.apache.tools.ant.types.Path
    
    tasks.register("list") {
        doLast {
            val path = ant.withGroovyBuilder {
                "path" {
                    "fileset"("dir" to "libs", "includes" to "*.jar")
                }
            } as Path
            path.list().forEach {
                println(it)
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  10. src/cmd/gofmt/rewrite.go

    /*
    func dump(msg string, val reflect.Value) {
    	fmt.Printf("%s:\n", msg)
    	ast.Print(fileSet, val.Interface())
    	fmt.Println()
    }
    */
    
    // rewriteFile applies the rewrite rule 'pattern -> replace' to an entire file.
    func rewriteFile(fileSet *token.FileSet, pattern, replace ast.Expr, p *ast.File) *ast.File {
    	cmap := ast.NewCommentMap(fileSet, p, p.Comments)
    	m := make(map[string]reflect.Value)
    	pat := reflect.ValueOf(pattern)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top