Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for rootfile (0.3 sec)

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

                task producer(type: InputFileTask) {
                    inFile = file("in.txt")
                    outFile = layout.buildDirectory.file("out.txt")
                }
                task transformer(type: InputTask) {
                    inValue = producer.outFile.map { f -> f.asFile.text as Integer }.map { i -> i + 2 }
                    outFile = file("out.txt")
                }
            """
            def input = file("in.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        def "task @InputFiles file collection closure is called once only when task executes"() {
            taskTypeWithInputFileCollection()
            buildFile """
                task merge(type: InputFilesTask) {
                    outFile = file("out.txt")
                    inFiles.from {
                        println("calculating value")
                        return 'in.txt'
                    }
                }
    """
            file("in.txt").text = "in"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

                    }
                }
                task producer(type: InputFilesTask) {
                    outFile = layout.buildDirectory.file("out.txt")
                    inFiles.from(configurations.implementation)
                }
                artifacts {
                    implementation producer.outFile
                }
            """
            return buildFile
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/k8s-node-setup.psm1 `
            -OutFile C:\k8s-node-setup.psm1
        Invoke-WebRequest `
            https://github.com/kubernetes/kubernetes/raw/master/cluster/gce/windows/configure.ps1 `
            -OutFile C:\configure.ps1
        Import-Module -Force C:\k8s-node-setup.psm1  # -Force to override existing
        # Execute functions manually or run configure.ps1.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-generate_test.go

    				if err := os.MkdirAll(dir, 0o755); err != nil {
    					return err
    				}
    			}
    			outFile, err := os.Create(dest)
    			if err != nil {
    				return fmt.Errorf("create: %v", err)
    			}
    			if _, err := io.Copy(outFile, tarReader); err != nil {
    				return fmt.Errorf("copy: %v", err)
    			}
    			outFile.Close()
    		default:
    			return fmt.Errorf("unknown type: %v in %v", header.Typeflag, header.Name)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    }
    
    // ccompile runs the given C or C++ compiler and creates an object from a single source file.
    func (b *Builder) ccompile(a *Action, outfile string, flags []string, file string, compiler []string) error {
    	p := a.Package
    	sh := b.Shell(a)
    	file = mkAbs(p.Dir, file)
    	outfile = mkAbs(p.Dir, outfile)
    
    	// Elide source directory paths if -trimpath is set.
    	// This is needed for source files (e.g., a .c file in a package directory).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                }
                task resolve(type: InputTask) {
                    inValue = configurations.implementation.elements.map { files -> files.collect { it.asFile.text.toInteger() } }
                    outFile = file('out.txt')
                }
            """
    
            given:
            configurationCacheRun(":resolve")
    
            when:
            configurationCacheRun(":resolve")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Default:     0,
    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"RootCAFile": {
    						SchemaProps: spec.SchemaProps{
    							Description: "rootCAFile is the root certificate authority will be included in service account's token secret. This must be a valid PEM-encoded CA bundle.",
    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top