- Sort Score
- Result 10 results
- Languages All
Results 121 - 125 of 125 for abspath (0.06 sec)
-
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
docSettingRewriteRuleList.add(rule); } protected String getResourcePath(final String basePath, final String type, final String path) { final String target = basePath + "/_" + type + path; if (ResourceUtil.getResourceNoException(target) != null) { return target; } return basePath + path; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
cmd/utils.go
} return path2BucketObject(path) } // path2BucketObjectWithBasePath returns bucket and prefix, if any, // of a 'path'. basePath is trimmed from the front of the 'path'. func path2BucketObjectWithBasePath(basePath, path string) (bucket, prefix string) { path = strings.TrimPrefix(path, basePath) path = strings.TrimPrefix(path, SlashSeparator) m := strings.Index(path, SlashSeparator) if m < 0 { return path, "" }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Aug 13 22:22:04 UTC 2024 - 31.9K bytes - Viewed (0) -
cmd/iam-store.go
} func getUserIdentityPath(user string, userType IAMUserType) string { var basePath string switch userType { case svcUser: basePath = iamConfigServiceAccountsPrefix case stsUser: basePath = iamConfigSTSPrefix default: basePath = iamConfigUsersPrefix } return pathJoin(basePath, user, iamIdentityFile) } func saveIAMFormat(ctx context.Context, store IAMStorageAPI) error {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Oct 14 16:35:37 UTC 2024 - 83.2K bytes - Viewed (0) -
cmd/xl-storage.go
// with files in it. Returns nil for a non-empty directory even when // recursive is set to false. func (s *xlStorage) deleteFile(basePath, deletePath string, recursive, immediate bool) error { if basePath == "" || deletePath == "" { return nil } bp := pathutil.Clean(basePath) // do not override basepath / or deletePath / dp := pathutil.Clean(deletePath) if !strings.HasPrefix(dp, bp) || dp == bp { return nil }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0) -
api/go1.txt
pkg go/build, type Context struct, GOPATH string pkg go/build, type Context struct, GOROOT string pkg go/build, type Context struct, HasSubdir func(string, string) (string, bool) pkg go/build, type Context struct, IsAbsPath func(string) bool pkg go/build, type Context struct, IsDir func(string) bool pkg go/build, type Context struct, JoinPath func(...string) string pkg go/build, type Context struct, OpenFile func(string) (io.ReadCloser, error)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)