Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for rootfile (0.2 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

                    File outFile = fvd.relativePath.replaceLastName(newFileName).getFile(destDir)
                    outFile.parentFile.mkdirs()
    
                    execOps.javaexec {
                        mainClass.set(XslTransformer.name)
                        args stylesheetFile.absolutePath
                        args fvd.file.absolutePath
                        args outFile.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildSymlinkHandlingIntegrationTest.groovy

            file('in.txt').touch()
            file("in-dir").createDir()
            def outFile = file("out.txt")
            def copy = file("other")
    
            given:
            run("work")
            run("work")
            result.assertTasksSkipped(":work")
    
            when:
            outFile.copyTo(copy)
            outFile.delete()
            outFile.createLink(copy)
            run("work")
    
    
            /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 14:30:36 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. cmd/genyaml/gen_kubectl_yaml.go

    	if parent == "" {
    		filename = docsDir + doc.Name + ".yaml"
    	} else {
    		filename = docsDir + parent + "_" + doc.Name + ".yaml"
    	}
    
    	outFile, err := os.Create(filename)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	defer outFile.Close()
    	_, err = outFile.Write(final)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 14:05:23 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. 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)
  5. cmd/genman/gen_kube_man.go

    `)
    
    	final := mangen.Render(out.Bytes())
    
    	filename := docsDir + dname + ".1"
    	outFile, err := os.Create(filename)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    	defer outFile.Close()
    	_, err = outFile.Write(final)
    	if err != nil {
    		fmt.Println(err)
    		os.Exit(1)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 12:03:09 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/log/slog/json_handler_test.go

    			URL:     "https://pkg.go.dev/golang.org/x/log/slog",
    			TraceID: "2039232309232309",
    			Addr:    "127.0.0.1:8080",
    		}),
    	}
    
    	outFile, err := os.Create(filepath.Join(b.TempDir(), "bench.log"))
    	if err != nil {
    		b.Fatal(err)
    	}
    	defer func() {
    		if err := outFile.Close(); err != nil {
    			b.Fatal(err)
    		}
    	}()
    
    	for _, bench := range []struct {
    		name  string
    		wc    io.Writer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/PreCreateOutputParentsStepTest.groovy

        def step = new PreCreateOutputParentsStep<>(delegate)
    
        def "outputs are created"() {
            given:
            def outputDir = file("outDir")
            def outputFile = file("parent/outFile")
            def localStateFile = file("local-state/stateFile")
            def destroyableFile = file("destroyable/file.txt")
    
            when:
            step.execute(work, context)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. docs/tls/README.md

    **Note:** PowerShell may need to be restarted for this change to take effect.
    
    #### 3.3.2 Generate a private key
    
    Run the following command to generate a private `.key` file:
    
    ```
    certtool.exe --generate-privkey --outfile private.key
    ```
    
    A response similar to this one should be displayed:
    
    ```
    Generating a 3072 bit RSA private key...
    ```
    
    #### 3.3.3 Generate a public certificate
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/idea/IdeaIntegrationTest/canCreateAndDeleteMetaData/expectedFiles/root.iws.xml

        <ConfirmationsSetting value="0" id="Remove"/>
      </component>
      <component name="ProjectReloadState">
        <option name="STATE" value="0"/>
      </component>
      <component name="PropertiesComponent">
        <property name="GoToFile.includeJavaFiles" value="false"/>
        <property name="GoToClass.toSaveIncludeLibraries" value="false"/>
        <property name="MemberChooser.sorted" value="false"/>
        <property name="MemberChooser.showClasses" value="true"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/resources/org/gradle/plugins/ide/idea/model/customWorkspace.xml

        <ConfirmationsSetting value="0" id="Remove" />
      </component>
      <component name="ProjectReloadState">
        <option name="STATE" value="0" />
      </component>
      <component name="PropertiesComponent">
        <property name="GoToFile.includeJavaFiles" value="false" />
        <property name="GoToClass.toSaveIncludeLibraries" value="false" />
        <property name="MemberChooser.sorted" value="false" />
        <property name="MemberChooser.showClasses" value="true" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 9.3K bytes
    - Viewed (0)
Back to top