Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for rootfile (0.17 sec)

  1. 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)
  2. 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)
  3. cluster/gce/windows/common.psm1

          Validate-SHA -Hash $Hash -Path $OutFile -Algorithm $Algorithm
          Log-Output "Skip download of ${OutFile}, it already exists with expected hash."
          return
        }
        catch {
          # The hash does not match the file on disk.
          # Proceed with the download and overwrite the file.
          Log-Output "${OutFile} exists but had wrong hash. Redownloading."
        }
      }
    
      $currentAttempt = 0
      while ($true) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 19 14:47:38 UTC 2022
    - 25.4K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

    # Install Visual C++ Redistributable for Visual Studio 2015-2022.
    RUN New-Item -Path "C:/" -Name "TEMP" -ItemType "directory"; \
        Invoke-WebRequest "https://aka.ms/vs/17/release/vc_redist.x64.exe" \
            -OutFile C:/TEMP/vc_redist.x64.exe -UseBasicParsing; \
        Start-Process -filepath C:/TEMP/vc_redist.x64.exe -ArgumentList '/install', '/passive', '/norestart' -Wait; \
        Remove-Item C:/TEMP/vc_redist.x64.exe
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/certificates.go

    	var (
    		rootCA []byte
    		err    error
    	)
    	if controllerContext.ComponentConfig.SAController.RootCAFile != "" {
    		if rootCA, err = readCA(controllerContext.ComponentConfig.SAController.RootCAFile); err != nil {
    			return nil, true, fmt.Errorf("error parsing root-ca-file at %s: %v", controllerContext.ComponentConfig.SAController.RootCAFile, err)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. pkg/volume/util/atomic_writer_test.go

    				".dotfile":      {Mode: 0644, Data: []byte("dotfile")},
    				".dotfile.file": {Mode: 0644, Data: []byte("dotfile.file")},
    			},
    			success: true,
    		},
    		{
    			name: "dotfiles mode",
    			payload: map[string]FileProjection{
    				"foo":           {Mode: 0407, Data: []byte("foo")},
    				"bar":           {Mode: 0440, Data: []byte("bar")},
    				".dotfile":      {Mode: 0777, Data: []byte("dotfile")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/util/net/interface_test.go

    		}
    	}
    }
    
    func makeRouteFile(content string, t *testing.T) (*os.File, error) {
    	routeFile, err := os.CreateTemp("", "route")
    	if err != nil {
    		return nil, err
    	}
    
    	if _, err := routeFile.Write([]byte(content)); err != nil {
    		return routeFile, err
    	}
    	err = routeFile.Close()
    	return routeFile, err
    }
    
    func TestFailGettingIPv4Routes(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 33.2K bytes
    - Viewed (0)
  9. 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)
  10. pkg/collateral/control.go

    _complete istio 2>/dev/null
    `
    
    		// Create the output file.
    		outFile, err := os.Create(c.OutputDir + "/_" + root.Name())
    		if err != nil {
    			return fmt.Errorf("unable to create zsh completion file: %v", err)
    		}
    		defer func() { _ = outFile.Close() }()
    
    		// Concatenate the head, initialization, generated bash, and tail to the file
    		if _, err = outFile.WriteString(zshInitialization); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top