Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for asFile (0.17 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    implementation project(':b')
                }
                task resolve(type: InputTask) {
                    inValue = configurations.implementation.elements.map { files -> files.collect { it.asFile.text.toInteger() } }
                    outFile = file('out.txt')
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                    @InputArtifact
                    abstract Provider<FileSystemLocation> getInputArtifact()
    
                    void transform(TransformOutputs outputs) {
                        def input = inputArtifact.get().asFile
                        println "processing [\${input.name}]"
                        assert input.file
                        for (def i : 1..parameters.multiplier.get()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    val output: Provider<RegularFile> = layout.buildDirectory.file("myOutput.txt")
    
    // If you really need the java.io.File for a non lazy API
    output.get().asFile
    
    // Or a path for a lazy String based API
    output.map { it.asFile.path }
    ----
    ======
    [.multi-language-sample]
    ======
    .build.gradle
    [source,groovy]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. src/crypto/tls/tls_test.go

    				return +1
    			}
    			// ECDHE < *
    			if aSuite.flags&suiteECDHE != 0 && bSuite.flags&suiteECDHE == 0 {
    				return -1
    			} else if aSuite.flags&suiteECDHE == 0 && bSuite.flags&suiteECDHE != 0 {
    				return +1
    			}
    			// AEAD < CBC
    			if aSuite.aead != nil && bSuite.aead == nil {
    				return -1
    			} else if aSuite.aead == nil && bSuite.aead != nil {
    				return +1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  5. src/go/build/build.go

    	}
    
    	f, err := os.Open(path)
    	if err != nil {
    		return nil, err // nil interface
    	}
    	return f, nil
    }
    
    // isFile determines whether path is a file by trying to open it.
    // It reuses openFile instead of adding another function to the
    // list in Context.
    func (ctxt *Context) isFile(path string) bool {
    	f, err := ctxt.openFile(path)
    	if err != nil {
    		return false
    	}
    	f.Close()
    	return true
    }
    
    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/dist/build.go

    	if b == "" {
    		b = "power8"
    	}
    	goppc64 = b
    
    	b = os.Getenv("GORISCV64")
    	if b == "" {
    		b = "rva20u64"
    	}
    	goriscv64 = b
    
    	if p := pathf("%s/src/all.bash", goroot); !isfile(p) {
    		fatalf("$GOROOT is not set correctly or not exported\n"+
    			"\tGOROOT=%s\n"+
    			"\t%s does not exist", goroot, p)
    	}
    
    	b = os.Getenv("GOHOSTARCH")
    	if b != "" {
    		gohostarch = b
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. configure.py

                                                          ask_python_bin_path,
                                                          default_python_bin_path)
        # Check if the path is valid
        if os.path.isfile(python_bin_path) and os.access(python_bin_path, os.X_OK):
          break
        elif not os.path.exists(python_bin_path):
          print('Invalid python path: {} cannot be found.'.format(python_bin_path))
        else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            if (dir.isDirectory()) {
                String[] settingsFileNames = ScriptFileUtil.getValidSettingsFileNames();
                for (String settingsFileName : settingsFileNames) {
                    if (dir.file(settingsFileName).isFile()) {
                        return true;
                    }
                }
            }
            return false;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                d.getManagementKey(),
                                "must specify an absolute path but is " + systemPath,
                                d);
                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                d.getManagementKey(),
                                "must specify an absolute path but is " + systemPath,
                                d);
                    } else if (!sysFile.isFile()) {
                        String msg = "refers to a non-existing file " + sysFile.getAbsolutePath();
                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
Back to top