Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for rootfile (0.19 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. staging/src/k8s.io/apiserver/pkg/util/webhook/gencerts.sh

    openssl x509 -req -in client.csr -CA caCert.pem -CAkey caKey.pem -CAcreateserial -out clientCert.pem -days 100000 -extensions v3_req -extfile client.conf
    
    outfile=certs_test.go
    
    cat > $outfile << EOF
    /*
    Copyright 2017 The Kubernetes Authors.
    
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 15:57:40 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/core/configmap/storage/storage_test.go

    			ObjectMeta: metav1.ObjectMeta{Name: "badName"},
    			Data: map[string]string{
    				"key": "value",
    			},
    		},
    		&api.ConfigMap{
    			ObjectMeta: metav1.ObjectMeta{Name: "name-2"},
    			Data: map[string]string{
    				"..dotfile": "do: nothing\n",
    			},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  10. pkg/registry/core/secret/storage/storage_test.go

    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    			Data:       map[string][]byte{"name with spaces": []byte("")},
    		},
    		&api.Secret{
    			ObjectMeta: metav1.ObjectMeta{Name: "name"},
    			Data:       map[string][]byte{"~.dotfile": []byte("")},
    		},
    	)
    }
    
    func TestUpdate(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 3.8K bytes
    - Viewed (0)
Back to top