Home
last modified time | relevance | path

Searched refs:AbsPath (Results 1 – 25 of 1008) sorted by relevance

12345678910>>...41

/dports/sysutils/chezmoi/chezmoi-2.9.3/internal/chezmoi/
H A Dabspath.go21 type AbsPath struct { struct
26 type AbsPaths []AbsPath
34 return AbsPath{
40 func (p AbsPath) Append(s string) AbsPath { argument
55 func (p AbsPath) Dir() AbsPath { argument
70 func (p AbsPath) Join(relPaths ...RelPath) AbsPath { argument
80 func (p AbsPath) JoinString(ss ...string) AbsPath { argument
93 func (p AbsPath) Less(other AbsPath) bool { argument
103 func (p AbsPath) MustTrimDirPrefix(dirPrefix AbsPath) RelPath { argument
130 func (p AbsPath) Split() (AbsPath, RelPath) { argument
[all …]
H A Dsystem.go15 Chmod(name AbsPath, mode fs.FileMode) error argument
19 Link(oldname, newname AbsPath) error argument
20 Lstat(filename AbsPath) (fs.FileInfo, error) argument
21 Mkdir(name AbsPath, perm fs.FileMode) error argument
22 RawPath(absPath AbsPath) (AbsPath, error) argument
24 ReadFile(name AbsPath) ([]byte, error) argument
25 Readlink(name AbsPath) (string, error) argument
26 RemoveAll(name AbsPath) error argument
27 Rename(oldpath, newpath AbsPath) error argument
31 Stat(name AbsPath) (fs.FileInfo, error) argument
[all …]
H A Ddryrunsystem.go25 func (s *DryRunSystem) Chmod(name AbsPath, mode fs.FileMode) error {
46 func (s *DryRunSystem) Link(oldname, newname AbsPath) error {
52 func (s *DryRunSystem) Lstat(name AbsPath) (fs.FileInfo, error) {
57 func (s *DryRunSystem) Mkdir(name AbsPath, perm fs.FileMode) error {
69 func (s *DryRunSystem) RawPath(path AbsPath) (AbsPath, error) {
79 func (s *DryRunSystem) ReadFile(name AbsPath) ([]byte, error) {
84 func (s *DryRunSystem) Readlink(name AbsPath) (string, error) {
89 func (s *DryRunSystem) RemoveAll(AbsPath) error {
95 func (s *DryRunSystem) Rename(oldpath, newpath AbsPath) error {
118 func (s *DryRunSystem) Stat(name AbsPath) (fs.FileInfo, error) {
[all …]
H A Dexternaldiffsystem.go20 destDirAbsPath AbsPath
21 tempDirAbsPath AbsPath
75 func (s *ExternalDiffSystem) Link(oldname, newname AbsPath) error {
81 func (s *ExternalDiffSystem) Lstat(name AbsPath) (fs.FileInfo, error) {
91 func (s *ExternalDiffSystem) RawPath(path AbsPath) (AbsPath, error) {
101 func (s *ExternalDiffSystem) ReadFile(name AbsPath) ([]byte, error) {
106 func (s *ExternalDiffSystem) Readlink(name AbsPath) (string, error) {
111 func (s *ExternalDiffSystem) RemoveAll(name AbsPath) error {
117 func (s *ExternalDiffSystem) Rename(oldpath, newpath AbsPath) error {
139 func (s *ExternalDiffSystem) Stat(name AbsPath) (fs.FileInfo, error) {
[all …]
H A Darchivereadersystem.go15 fileInfos map[AbsPath]fs.FileInfo
16 contents map[AbsPath][]byte
17 linkname map[AbsPath]string
22 RootAbsPath AbsPath
32 fileInfos: make(map[AbsPath]fs.FileInfo),
33 contents: make(map[AbsPath][]byte),
34 linkname: make(map[AbsPath]string),
77 func (s *ArchiveReaderSystem) FileInfos() map[AbsPath]fs.FileInfo {
82 func (s *ArchiveReaderSystem) Lstat(filename AbsPath) (fs.FileInfo, error) {
91 func (s *ArchiveReaderSystem) ReadFile(name AbsPath) ([]byte, error) {
[all …]
H A Dgitdiffsystem.go20 dirAbsPath AbsPath
51 func (s *GitDiffSystem) Chmod(name AbsPath, mode fs.FileMode) error {
88 func (s *GitDiffSystem) Link(oldname, newname AbsPath) error {
94 func (s *GitDiffSystem) Lstat(name AbsPath) (fs.FileInfo, error) {
109 func (s *GitDiffSystem) RawPath(path AbsPath) (AbsPath, error) {
119 func (s *GitDiffSystem) ReadFile(name AbsPath) ([]byte, error) {
124 func (s *GitDiffSystem) Readlink(name AbsPath) (string, error) {
129 func (s *GitDiffSystem) RemoveAll(name AbsPath) error {
139 func (s *GitDiffSystem) Rename(oldpath, newpath AbsPath) error {
215 func (s *GitDiffSystem) Stat(name AbsPath) (fs.FileInfo, error) {
[all …]
H A Drealsystem.go36 func (s *RealSystem) Link(oldname, newname AbsPath) error { argument
41 func (s *RealSystem) Lstat(filename AbsPath) (fs.FileInfo, error) { argument
46 func (s *RealSystem) Mkdir(name AbsPath, perm fs.FileMode) error { argument
51 func (s *RealSystem) RawPath(absPath AbsPath) (AbsPath, error) { argument
60 func (s *RealSystem) ReadDir(name AbsPath) ([]fs.DirEntry, error) { argument
65 func (s *RealSystem) ReadFile(name AbsPath) ([]byte, error) { argument
70 func (s *RealSystem) RemoveAll(name AbsPath) error { argument
75 func (s *RealSystem) Rename(oldpath, newpath AbsPath) error { argument
90 func (s *RealSystem) RunScript(scriptname RelPath, dir AbsPath, data []byte, interpreter *Interpret… argument
127 func (s *RealSystem) Stat(name AbsPath) (fs.FileInfo, error) { argument
[all …]
H A Dactualstateentry.go12 Path() AbsPath
18 absPath AbsPath
23 absPath AbsPath
29 absPath AbsPath
36 absPath AbsPath
42 func NewActualStateEntry(system System, absPath AbsPath, fileInfo fs.FileInfo, err error) (ActualSt… argument
95 func (s *ActualStateAbsent) Path() AbsPath {
113 func (s *ActualStateDir) Path() AbsPath {
141 func (s *ActualStateFile) Path() AbsPath {
173 func (s *ActualStateSymlink) Path() AbsPath {
H A Ddebugsystem.go28 func (s *DebugSystem) Chmod(name AbsPath, mode fs.FileMode) error {
70 func (s *DebugSystem) Link(oldpath, newpath AbsPath) error {
80 func (s *DebugSystem) Lstat(name AbsPath) (fs.FileInfo, error) {
89 func (s *DebugSystem) Mkdir(name AbsPath, perm fs.FileMode) error {
99 func (s *DebugSystem) RawPath(path AbsPath) (AbsPath, error) {
104 func (s *DebugSystem) ReadDir(name AbsPath) ([]fs.DirEntry, error) {
113 func (s *DebugSystem) ReadFile(name AbsPath) ([]byte, error) {
124 func (s *DebugSystem) Readlink(name AbsPath) (string, error) {
134 func (s *DebugSystem) RemoveAll(name AbsPath) error {
143 func (s *DebugSystem) Rename(oldpath, newpath AbsPath) error {
[all …]
H A Dreadonlysystem.go39 func (s *ReadOnlySystem) Lstat(filename AbsPath) (fs.FileInfo, error) {
44 func (s *ReadOnlySystem) RawPath(path AbsPath) (AbsPath, error) {
49 func (s *ReadOnlySystem) ReadDir(name AbsPath) ([]fs.DirEntry, error) {
54 func (s *ReadOnlySystem) ReadFile(name AbsPath) ([]byte, error) {
59 func (s *ReadOnlySystem) Readlink(name AbsPath) (string, error) {
69 func (s *ReadOnlySystem) Stat(name AbsPath) (fs.FileInfo, error) {
H A Ddumpsystem.go30 Name AbsPath `json:"name" toml:"name" yaml:"name"`
37 Name AbsPath `json:"name" toml:"name" yaml:"name"`
45 Name AbsPath `json:"name" toml:"name" yaml:"name"`
53 Name AbsPath `json:"name" toml:"name" yaml:"name"`
70 func (s *DumpSystem) Mkdir(dirname AbsPath, perm fs.FileMode) error {
83 func (s *DumpSystem) RunScript(scriptname RelPath, dir AbsPath, data []byte, interpreter *Interpret…
106 func (s *DumpSystem) WriteFile(filename AbsPath, data []byte, perm fs.FileMode) error {
121 func (s *DumpSystem) WriteSymlink(oldname string, newname AbsPath) error {
H A Dgpgencryption.go25 if err := withPrivateTempDir(func(tempDirAbsPath AbsPath) error {
47 func (e *GPGEncryption) DecryptToFile(plaintextFilename AbsPath, ciphertext []byte) error {
48 return withPrivateTempDir(func(tempDirAbsPath AbsPath) error {
61 if err := withPrivateTempDir(func(tempDirAbsPath AbsPath) error {
83 func (e *GPGEncryption) EncryptFile(plaintextFilename AbsPath) ([]byte, error) {
85 if err := withPrivateTempDir(func(tempDirAbsPath AbsPath) error {
108 func (e *GPGEncryption) decryptArgs(plaintextFilename, ciphertextFilename AbsPath) []string {
116 func (e *GPGEncryption) encryptArgs(plaintextFilename, ciphertextFilename AbsPath) []string {
145 func withPrivateTempDir(f func(tempDirAbsPath AbsPath) error) (err error) {
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/crates/paths/src/
H A Dlib.rs21 type Target = AbsPath;
22 fn deref(&self) -> &AbsPath { in deref() argument
33 impl AsRef<AbsPath> for AbsPathBuf {
34 fn as_ref(&self) -> &AbsPath { in as_ref() argument
39 impl Borrow<AbsPath> for AbsPathBuf {
40 fn borrow(&self) -> &AbsPath { in borrow() argument
82 pub fn as_path(&self) -> &AbsPath { in as_path() argument
98 pub struct AbsPath(Path); struct
100 impl AsRef<Path> for AbsPath { implementation
112 Ok(AbsPath::assert(path)) in try_from()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/tools/rust-analyzer/crates/paths/src/
H A Dlib.rs21 type Target = AbsPath;
22 fn deref(&self) -> &AbsPath { in deref() argument
33 impl AsRef<AbsPath> for AbsPathBuf {
34 fn as_ref(&self) -> &AbsPath { in as_ref() argument
39 impl Borrow<AbsPath> for AbsPathBuf {
40 fn borrow(&self) -> &AbsPath { in borrow() argument
82 pub fn as_path(&self) -> &AbsPath { in as_path() argument
98 pub struct AbsPath(Path); struct
100 impl AsRef<Path> for AbsPath { implementation
112 Ok(AbsPath::assert(path)) in try_from()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/getsentry/sentry-go/
H A Dstacktrace_test.go85 AbsPath: "/goroot/src/runtime/asm_amd64.s",
91 AbsPath: "/goroot/src/testing/testing.go",
97 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
103 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_test.go",
109 AbsPath: "/somewhere/sentry/sentry-go/stacktrace.go",
117 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
128 AbsPath: "/somewhere/sentry/sentry-go/http/integration/integration.go",
134 AbsPath: "/somewhere/sentry/sentry-go/http/sentryhttp.go",
140 AbsPath: "/somewhere/example.com/pkg/main.go",
148 AbsPath: "/somewhere/example.com/pkg/main.go",
/dports/net-im/dendrite/dendrite-0.5.1/vendor/github.com/getsentry/sentry-go/
H A Dstacktrace_test.go85 AbsPath: "/goroot/src/runtime/asm_amd64.s",
91 AbsPath: "/goroot/src/testing/testing.go",
97 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
103 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_test.go",
109 AbsPath: "/somewhere/sentry/sentry-go/stacktrace.go",
117 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
128 AbsPath: "/somewhere/sentry/sentry-go/http/integration/integration.go",
134 AbsPath: "/somewhere/sentry/sentry-go/http/sentryhttp.go",
140 AbsPath: "/somewhere/example.com/pkg/main.go",
148 AbsPath: "/somewhere/example.com/pkg/main.go",
/dports/www/gitlab-pages/gitlab-pages-f8512edbec4ec83b426c8ca2dda467de424685e4/vendor/github.com/getsentry/sentry-go/
H A Dstacktrace_test.go85 AbsPath: "/goroot/src/runtime/asm_amd64.s",
91 AbsPath: "/goroot/src/testing/testing.go",
97 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
103 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_test.go",
109 AbsPath: "/somewhere/sentry/sentry-go/stacktrace.go",
117 AbsPath: "/somewhere/sentry/sentry-go/stacktrace_external_test.go",
128 AbsPath: "/somewhere/sentry/sentry-go/http/integration/integration.go",
134 AbsPath: "/somewhere/sentry/sentry-go/http/sentryhttp.go",
140 AbsPath: "/somewhere/example.com/pkg/main.go",
148 AbsPath: "/somewhere/example.com/pkg/main.go",
/dports/sysutils/kubectl/kubernetes-1.22.2/test/integration/apiserver/
H A Dmax_request_body_bytes_test.go43 err := c.Post().AbsPath("/api/v1/namespaces/default/pods").
66 err = c.Put().AbsPath("/api/v1/namespaces/default/secrets/test").
77 err = c.Patch(types.JSONPatchType).AbsPath("/api/v1/namespaces/default/secrets/test").
92 err = rest.Patch(types.JSONPatchType).AbsPath("/api/v1/namespaces/default/secrets/test").
176 err = c.Delete().AbsPath("/api/v1/namespaces/default/secrets/test").
199 AbsPath("/api/v1/namespaces/default/configmaps").
222 AbsPath("/api/v1/namespaces/default/configmaps").
245 AbsPath("/api/v1/namespaces/default/configmaps").
266 AbsPath("/api/v1/namespaces/default/configmaps").
290 AbsPath("/api/v1/namespaces/default/configmaps").
[all …]
/dports/print/lyx/lyx-2.3.4.2/lib/xtemplates/
H A Ddia.xtemplate37 UpdateResult "$$AbsPath$$Basename.eps"
39 ReferencedFile latex "$$AbsPath$$Basename.eps"
40 ReferencedFile dvi "$$AbsPath$$Basename.eps"
50 UpdateResult "$$AbsPath$$Basename.pdf"
52 ReferencedFile pdflatex "$$AbsPath$$Basename.pdf"
60 UpdateResult "$$AbsPath$$Basename.eps"
61 ReferencedFile docbook "$$AbsPath$$Basename.eps"
62 ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
67 UpdateResult "$$AbsPath$$Basename.svg"
68 ReferencedFile xhtml "$$AbsPath$$Basename.svg"
H A Dxfig.xtemplate49 UpdateResult "$$AbsPath$$Basename.pstex_t"
55 ReferencedFile latex "$$AbsPath$$Basename.eps"
56 ReferencedFile dvi "$$AbsPath$$Basename.eps"
63 UpdateResult "$$AbsPath$$Basename.pdftex_t"
69 ReferencedFile pdflatex "$$AbsPath$$Basename.pdf"
77 UpdateResult "$$AbsPath$$Basename.eps"
78 ReferencedFile docbook "$$AbsPath$$Basename.eps"
79 ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
84 UpdateResult "$$AbsPath$$Basename.svg"
85 ReferencedFile xhtml "$$AbsPath$$Basename.svg"
H A Dinkscape.xtemplate56 UpdateResult "$$AbsPath$$Basename.pdf_tex"
63 ReferencedFile pdflatex "$$AbsPath$$Basename.pdf"
70 UpdateResult "$$AbsPath$$Basename.eps_tex"
77 ReferencedFile latex "$$AbsPath$$Basename.eps"
78 ReferencedFile dvi "$$AbsPath$$Basename.eps"
86 UpdateResult "$$AbsPath$$Basename.eps"
87 ReferencedFile docbook "$$AbsPath$$Basename.eps"
88 ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
93 UpdateResult "$$AbsPath$$Basename.svg"
94 ReferencedFile xhtml "$$AbsPath$$Basename.svg"
H A Dvector_graphics.xtemplate48 UpdateResult "$$AbsPath$$Basename.eps"
50 ReferencedFile latex "$$AbsPath$$Basename.eps"
51 ReferencedFile dvi "$$AbsPath$$Basename.eps"
61 UpdateResult "$$AbsPath$$Basename.pdf"
63 ReferencedFile pdflatex "$$AbsPath$$Basename.pdf"
71 UpdateResult "$$AbsPath$$Basename.eps"
72 ReferencedFile docbook "$$AbsPath$$Basename.eps"
73 ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
78 UpdateResult "$$AbsPath$$Basename.svg"
79 ReferencedFile xhtml "$$AbsPath$$Basename.svg"
H A Draster_image.xtemplate55 UpdateResult "$$AbsPath$$Basename.eps"
57 ReferencedFile latex "$$AbsPath$$Basename.eps"
58 ReferencedFile dvi "$$AbsPath$$Basename.eps"
68 UpdateResult "$$AbsPath$$Basename.$$pngOrjpg"
70 ReferencedFile pdflatex "$$AbsPath$$Basename.$$pngOrjpg"
78 UpdateResult "$$AbsPath$$Basename.eps"
79 ReferencedFile docbook "$$AbsPath$$Basename.eps"
80 ReferencedFile docbook-xml "$$AbsPath$$Basename.eps"
85 UpdateResult "$$AbsPath$$Basename.png"
86 ReferencedFile xhtml "$$AbsPath$$Basename.png"
/dports/security/cargo-audit/rustsec-cargo-audit-v0.15.2/cargo-audit/cargo-crates/abscissa_core-0.5.2/src/
H A Dpath.rs6 pub use canonical_path::{CanonicalPath as AbsPath, CanonicalPathBuf as AbsPathBuf};
19 fn exe(&self) -> &AbsPath; in exe() argument
25 fn root(&self) -> &AbsPath; in root() argument
31 fn secrets(&self) -> &AbsPath; in secrets() argument
83 fn exe(&self) -> &AbsPath { in exe() argument
89 fn root(&self) -> &AbsPath { in root() argument
95 fn secrets(&self) -> &AbsPath { in secrets() argument
/dports/devel/p5-Types-Path-Tiny/Types-Path-Tiny-0.006/t/
H A Dbasic.t30 # AbsPath
32 label => "coerce string to AbsPath",
33 type => AbsPath,
37 label => "coerce Path to AbsPath",
38 type => AbsPath,
42 label => "coerce object to AbsPath",
43 type => AbsPath,
47 label => "coerce array ref to AbsPath",
48 type => AbsPath,

12345678910>>...41