Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for logpath (0.15 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	legacySymlink := legacyLogSymlink(containerID, containerMeta.Name, sandboxMeta.Name,
    		sandboxMeta.Namespace)
    	containerLog := filepath.Join(podSandboxConfig.LogDirectory, containerConfig.LogPath)
    	// only create legacy symlink if containerLog path exists (or the error is not IsNotExist).
    	// Because if containerLog path does not exist, only dangling legacySymlink is created.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		"healthz sync loop":               {url: "/healthz/syncloop", bucket: "healthz"},
    		"logs":                            {url: "/logs/", bucket: "logs"},
    		"logs with path":                  {url: "/logs/logpath", bucket: "logs"},
    		"metrics":                         {url: "/metrics", bucket: "metrics"},
    		"metrics cadvisor sub":            {url: "/metrics/cadvisor", bucket: "metrics/cadvisor"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			ImageRef:    imageRef,
    			CreatedAt:   template.createdAt,
    			State:       template.state,
    			Labels:      containerConfig.Labels,
    			Annotations: containerConfig.Annotations,
    			LogPath:     filepath.Join(sandboxConfig.GetLogDirectory(), containerConfig.GetLogPath()),
    		},
    		SandboxID: podSandboxID,
    	}
    }
    
    // makeFakeContainers creates a group of fake containers based on the container templates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/lib.go

    	}
    	for _, libdir := range ctxt.Libdir {
    		libpath := filepath.Join(libdir, shlib)
    		if _, err := os.Stat(libpath); err == nil {
    			return libpath
    		}
    	}
    	Errorf(nil, "cannot find shared library: %s", shlib)
    	return ""
    }
    
    func ldshlibsyms(ctxt *Link, shlib string) {
    	var libpath string
    	if filepath.IsAbs(shlib) {
    		libpath = shlib
    		shlib = filepath.Base(shlib)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. configure.py

        except subprocess.CalledProcessError as e:
          output = e.output
      else:
        output = subprocess.check_output(cmd, stderr=stderr)
      return output.decode('UTF-8').strip()
    
    
    def cygpath(path):
      """Convert path from posix to windows."""
      return os.path.abspath(path).replace('\\', '/')
    
    
    def get_python_path(environ_cp, python_bin_path):
      """Get the python site package paths."""
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func GetShortPathName(longpath *uint16, shortpath *uint16, buflen uint32) (n uint32, err error) {
    	r0, _, e1 := Syscall(procGetShortPathNameW.Addr(), 3, uintptr(unsafe.Pointer(longpath)), uintptr(unsafe.Pointer(shortpath)), uintptr(buflen))
    	n = uint32(r0)
    	if n == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  7. src/syscall/syscall_windows.go

    }
    
    func Unlink(path string) (err error) {
    	pathp, err := UTF16PtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return DeleteFile(pathp)
    }
    
    func Rename(oldpath, newpath string) (err error) {
    	from, err := UTF16PtrFromString(oldpath)
    	if err != nil {
    		return err
    	}
    	to, err := UTF16PtrFromString(newpath)
    	if err != nil {
    		return err
    	}
    	return MoveFile(from, to)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    }
    
    func Unlink(path string) (err error) {
    	pathp, err := UTF16PtrFromString(path)
    	if err != nil {
    		return err
    	}
    	return DeleteFile(pathp)
    }
    
    func Rename(oldpath, newpath string) (err error) {
    	from, err := UTF16PtrFromString(oldpath)
    	if err != nil {
    		return err
    	}
    	to, err := UTF16PtrFromString(newpath)
    	if err != nil {
    		return err
    	}
    	return MoveFileEx(from, to, MOVEFILE_REPLACE_EXISTING)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    			// -fPIC fundamentally.)
    		default:
    			// Check for static linking support
    			var staticCheck rtSkipFunc
    			ccName := compilerEnvLookup("CC", defaultcc, goos, goarch)
    			cc, err := exec.LookPath(ccName)
    			if err != nil {
    				staticCheck.skip = func(*distTest) (string, bool) {
    					return fmt.Sprintf("$CC (%q) not found, skip cgo static linking test.", ccName), true
    				}
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/cmd/internal/testdir/testdir_test.go

    		}
    		return buf.Bytes(), err
    	}
    
    	importcfg := func(pkgs []*goDirPkg) string {
    		cfg := stdlibImportcfg()
    		for _, pkg := range pkgs {
    			pkgpath := path.Join("test", strings.TrimSuffix(pkg.files[0], ".go"))
    			cfg += "\npackagefile " + pkgpath + "=" + filepath.Join(tempDir, pkgpath+".a")
    		}
    		filename := filepath.Join(tempDir, "importcfg")
    		err := os.WriteFile(filename, []byte(cfg), 0644)
    		if err != nil {
    			t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top