Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 127 for file (1.51 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            def files = collection.files
    
            then:
            _ * fileResolver.resolve("src2") >> file2
            files as List == [file1, file2]
            !collection.explicit
        }
    
        def "can alternate multiple updates to collection convention and explicit values"() {
            given:
            def file1 = new File("1")
            def file2 = new File("2")
            def file3 = new File("3")
            def file4 = new File("4")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

            outputContains 'fis = fis-file'
            outputContains 'fis = fis-abs'
    
            and:
            problems.assertResultHasProblems(result) {
                withInput "Build file 'build.gradle': file 'provider.txt'"
                withInput "Build file 'build.gradle': file 'fis-path.txt'"
                withInput "Build file 'build.gradle': file 'fis-file.txt'"
                withInput "Build file 'build.gradle': file 'fis-abs.txt'"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. .teamcity/test-buckets.json

    					"test-kit",
    					"ide",
    					"file-collections",
    					"persistent-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"kotlin-dsl-tooling-builders",
    					"execution-e2e-tests",
    					"declarative-dsl-provider",
    					"platform-native",
    					"version-control",
    					"file-watching",
    					"jacoco",
    					"ivy",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

        public static final File USER_MAVEN_CONFIGURATION_HOME = new File(USER_HOME, ".m2");
    
        public static final File DEFAULT_USER_TOOLCHAINS_FILE = new File(USER_MAVEN_CONFIGURATION_HOME, "toolchains.xml");
    
        public static final File DEFAULT_GLOBAL_TOOLCHAINS_FILE =
                new File(System.getProperty("maven.conf"), "toolchains.xml");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    }
                }
                dependencies {
                    implementation files('root.blue')
                }
            """
            file('root.blue') << 'root'
        }
    
        def "task input file collection can include the output of artifact transforms of prebuilt file dependencies"() {
            def configurationCache = newConfigurationCacheFixture()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    public void GradleWrapperMain(); public static void main(String[]) throws Exception; private static void addSystemProperties(java.util.Properties, java.io.File, java.io.File); private static java.io.File rootDir(java.io.File); private static java.io.File wrapperProperties(java.io.File); private static java.io.File wrapperJar(); private static java.io.File gradleUserHome(org.gradle.cli.ParsedCommandLine); private static Logger logger(org.gradle.cli.ParsedCommandLine); } gradle-wrapper-classpath.properties...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    		return !strings.HasPrefix(p, ".") && (!strings.HasPrefix(p, "_") || !strings.HasSuffix(p, ".go"))
    	})
    
    	// Add generated files for this package.
    	for _, gt := range gentab {
    		if gt.pkg == pkg {
    			files = append(files, gt.file)
    		}
    	}
    	files = uniq(files)
    
    	// Convert to absolute paths.
    	for i, p := range files {
    		if !filepath.IsAbs(p) {
    			files[i] = pathf("%s/%s", dir, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{"go1.20", "go1.20.1", "go1.20"},     // file upgrade ignored
    		{"go1.20.1", "go1.20", "go1.20.1"},   // file upgrade ignored
    		{"go1.20.1", "go1.21", "go1.21"},     // file upgrade permitted
    		{"go1.20.1", "go1.19", "go1.20.1"},   // file downgrade not permitted
    		{"go1.21.1", "go1.19.1", "go1.21.1"}, // file downgrade not permitted (invalid file version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public boolean hasParent() {
            return getParent() != null;
        }
    
        public File getFile() {
            return file;
        }
    
        public void setFile(File file) {
            this.file = file;
            this.basedir = file != null ? file.getParentFile() : null;
        }
    
        /**
         * Sets project {@code file} without changing project {@code basedir}.
         *
         * @since 3.2.4
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/init.go

    )
    
    // ModFile returns the parsed go.mod file.
    //
    // Note that after calling LoadPackages or LoadModGraph,
    // the require statements in the modfile.File are no longer
    // the source of truth and will be ignored: edits made directly
    // will be lost at the next call to WriteGoMod.
    // To make permanent changes to the require statements
    // in go.mod, edit it before loading.
    func ModFile() *modfile.File {
    	Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top