Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 455 for fullpath (2.65 sec)

  1. pkg/apis/networking/validation/validation.go

    func validateIPAddressParentReference(params *networking.ParentReference, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if params == nil {
    		allErrs = append(allErrs, field.Required(fldPath.Child("parentRef"), ""))
    		return allErrs
    	}
    
    	fldPath = fldPath.Child("parentRef")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local_test.go

    				"--data-dir=/var/lib/etcd",
    				"--cert-file=" + filepath.FromSlash(kubeadmconstants.EtcdServerCertName),
    				"--key-file=" + filepath.FromSlash(kubeadmconstants.EtcdServerKeyName),
    				"--trusted-ca-file=" + filepath.FromSlash(kubeadmconstants.EtcdCACertName),
    				"--client-cert-auth=true",
    				"--peer-cert-file=" + filepath.FromSlash(kubeadmconstants.EtcdPeerCertName),
    				"--peer-key-file=" + filepath.FromSlash(kubeadmconstants.EtcdPeerKeyName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            and:
            exeProject.projectConfigurations['debug'].includePath == filePath("src/main/headers", "../lib/src/hello/headers")
            helloDllProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
            helloLibProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  4. src/cmd/pack/pack_test.go

    	dir := t.TempDir()
    	hello := filepath.Join(dir, "hello.go")
    	prog := `
    		package main
    		func main() {
    			println("hello world")
    		}
    	`
    	err := os.WriteFile(hello, []byte(prog), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	run := func(args ...string) string {
    		return doRun(t, dir, args...)
    	}
    
    	importcfgfile := filepath.Join(dir, "hello.importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      std::unique_ptr<raw_ostream> os;
      std::string filepath;
      Status result = CreateFileForDumping(name, &os, &filepath, dirname);
      if (!result.ok()) return std::string(result.message());
    
      (*os) << content;
      LOG(INFO) << "Outputted requested string to '" << filepath << "'";
      return filepath;
    }
    
    void SetCrashReproducer(mlir::PassManager& pm, llvm::StringRef dir_path) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. pkg/volume/util/subpath/subpath_linux.go

    func doSafeOpen(pathname string, base string) (int, error) {
    	pathname = filepath.Clean(pathname)
    	base = filepath.Clean(base)
    
    	// Calculate segments to follow
    	subpath, err := filepath.Rel(base, pathname)
    	if err != nil {
    		return -1, err
    	}
    	segments := strings.Split(subpath, string(filepath.Separator))
    
    	// Assumption: base is the only directory that we have under control.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 12 14:09:11 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  7. pkg/volume/flexvolume/probe_test.go

    	assert.NoError(t, err)
    	assert.Equal(t, 0, len(events))
    
    	// Call probe after a file is added. Should return 1 event.
    
    	// add driver
    	const driverName2 = "fake-driver2"
    	driverPath := filepath.Join(pluginDir, driverName2)
    	executablePath := filepath.Join(driverPath, driverName2)
    	installDriver(driverName2, fs)
    	watcher.TriggerEvent(fsnotify.Create, driverPath)
    	watcher.TriggerEvent(fsnotify.Create, executablePath)
    
    	// Act
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/link/link_test.go

    	tmpdir := t.TempDir()
    
    	aSrc := filepath.Join("testdata", "testIndexMismatch", "a.go")
    	bSrc := filepath.Join("testdata", "testIndexMismatch", "b.go")
    	mSrc := filepath.Join("testdata", "testIndexMismatch", "main.go")
    	aObj := filepath.Join(tmpdir, "a.o")
    	mObj := filepath.Join(tmpdir, "main.o")
    	exe := filepath.Join(tmpdir, "main.exe")
    
    	importcfgFile := filepath.Join(tmpdir, "runtime.importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys.go

    	if path == "" {
    		return ""
    	}
    	if filepath.IsAbs(path) {
    		return filepath.Clean(path)
    	}
    
    	if v := filepath.VolumeName(cwd); v != "" && path[0] == filepath.Separator {
    		// On Windows filepath.Join(cwd, path) doesn't always work. In general
    		// filepath.Abs needs to make a syscall on Windows. Elsewhere in cmd/go
    		// use filepath.Join(cwd, path), but cmd/go specifically supports Windows
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/cfg/cfg.go

    	BuildContext.GOROOT = goroot
    
    	GOROOT = goroot
    	if goroot == "" {
    		GOROOTbin = ""
    		GOROOTpkg = ""
    		GOROOTsrc = ""
    	} else {
    		GOROOTbin = filepath.Join(goroot, "bin")
    		GOROOTpkg = filepath.Join(goroot, "pkg")
    		GOROOTsrc = filepath.Join(goroot, "src")
    	}
    
    	installedGOOS = runtime.GOOS
    	installedGOARCH = runtime.GOARCH
    	if isTestGo {
    		if testOS := os.Getenv("TESTGO_GOHOSTOS"); testOS != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top