Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for rootfile (0.32 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractLineEndingSensitivityIntegrationSpec.groovy

                                    new File(unzipDir, entry.getName()).mkdirs()
                                    continue
                                }
                                File outFile = new File(unzipDir, entry.getName())
                                outFile.withOutputStream { outputStream ->
                                    copy(inputStream, outputStream)
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  2. src/log/slog/logger_test.go

    		const wantFile = "logger_test.go"
    		wantLine := startLine + count*2
    		got := h.r.source()
    		gotFile := filepath.Base(got.File)
    		if got.Function != wantFunc || gotFile != wantFile || got.Line != wantLine {
    			t.Errorf("got (%s, %s, %d), want (%s, %s, %d)",
    				got.Function, gotFile, got.Line, wantFunc, wantFile, wantLine)
    		}
    	}
    
    	defer SetDefault(Default()) // restore
    	logger := New(h)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 21:25:30 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. hack/lib/golang.sh

      for test in "${tests[@]:+${tests[@]}}"; do
        local outfile testpkg
        outfile=$(kube::golang::outfile_for_binary "${test}" "${platform}")
        testpkg=$(dirname "${test}")
    
        mkdir -p "$(dirname "${outfile}")"
        go test -c \
          ${goflags:+"${goflags[@]}"} \
          -gcflags="${gogcflags}" \
          -ldflags="${goldflags}" \
          -tags="${gotags:-}" \
          -o "${outfile}" \
          "${testpkg}"
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. src/os/readfrom_linux_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer in.Close()
    	outFile := filepath.Join(t.TempDir(), "cmdline")
    	out, err := Create(outFile)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err := io.Copy(out, in); err != nil {
    		t.Fatal(err)
    	}
    	if err := out.Close(); err != nil {
    		t.Fatal(err)
    	}
    	copy, err := ReadFile(outFile)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !bytes.Equal(cmdline, copy) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    	}
    
    	var rootCA []byte
    	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 {
    		rootCA = rootClientBuilder.ConfigOrDie("tokens-controller").CAData
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. 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)
  7. cluster/gce/windows/testonly/install-ssh.psm1

      $url = ("https://github.com/PowerShell/Win32-OpenSSH/releases/download/" +
              "v7.9.0.0p1-Beta/OpenSSH-Win64.zip")
      $ProgressPreference = 'SilentlyContinue'
      Invoke-WebRequest $url -OutFile C:\openssh-win64.zip
    
      # Unzip and install open-ssh
      Expand-Archive -Force C:\openssh-win64.zip -DestinationPath $OPENSSH_ROOT
      powershell.exe `
          -ExecutionPolicy Bypass `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 09 05:09:18 UTC 2021
    - 11.6K bytes
    - Viewed (0)
  8. docs/recipes.md

     [PostFileJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PostFile.java
     [PostFileKotlin]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/kt/PostFile.kt
     [PostFormJava]: https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PostForm.java
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/main.go

    			bench = benchmark.New(benchmark.NoGC, *benchmarkFileFlag)
    		} else {
    			Errorf(nil, "unknown benchmark flag: %q", *benchmarkFlag)
    			usage()
    		}
    	}
    
    	bench.Start("libinit")
    	libinit(ctxt) // creates outfile
    	bench.Start("computeTLSOffset")
    	ctxt.computeTLSOffset()
    	bench.Start("Archinit")
    	thearch.Archinit(ctxt)
    
    	if ctxt.linkShared && !ctxt.IsELF {
    		Exitf("-linkshared can only be used on elf systems")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. src/internal/coverage/cfile/emit.go

    // if something went wrong. See the comment on the emitState type
    // definition above for more on how file opening is managed.
    func (s *emitState) openMetaFile(metaHash [16]byte, metaLen uint64) error {
    
    	// Open meta-outfile for reading to see if it exists.
    	fn := fmt.Sprintf("%s.%x", coverage.MetaFilePref, metaHash)
    	s.mfname = filepath.Join(s.outdir, fn)
    	fi, err := os.Stat(s.mfname)
    	if err != nil || fi.Size() != int64(metaLen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
Back to top