- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 15 for abspath (0.04 sec)
-
cmd/update.go
// Convert to absolute path absPath, err := filepath.Abs(path) if err != nil { return t, fmt.Errorf("Unable to get absolute path of %s. %w", path, err) } // Version is minio non-standard, we will use minio binary's // ModTime as release time. fi, err := Stat(absPath) if err != nil { return t, fmt.Errorf("Unable to get ModTime of %s. %w", absPath, err) } // Return the ModTime
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 18.9K bytes - Viewed (0) -
cmd/iam-object-store.go
var basePath string if isGroup { basePath = iamConfigPolicyDBGroupsPrefix } else { switch userType { case svcUser: basePath = iamConfigPolicyDBServiceAccountsPrefix case stsUser: basePath = iamConfigPolicyDBSTSUsersPrefix default: basePath = iamConfigPolicyDBUsersPrefix } } ctx, cancel := context.WithCancel(ctx)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26.6K bytes - Viewed (0) -
cmd/ftp-server-driver.go
// Stat implements ftpDriver func (driver *ftpDriver) Stat(ctx *ftp.Context, objPath string) (fi os.FileInfo, err error) { stopFn := globalFtpMetrics.log(ctx, objPath) defer stopFn(0, err) if objPath == SlashSeparator { return &minioFileInfo{ p: SlashSeparator, isDir: true, }, nil } bucket, object := path2BucketObject(objPath) if bucket == "" { return nil, errors.New("bucket name cannot be empty")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/DfsResolverTest.java
assertNull(dfsResolver.resolve(mockContext, "anyDomain", "anyRoot", "anyPath")); } @Test void testResolve_NullRoot() throws CIFSException { when(mockConfig.isDfsDisabled()).thenReturn(false); assertNull(dfsResolver.resolve(mockContext, "anyDomain", null, "anyPath")); } @Test void testResolve_IpcRoot() throws CIFSException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
public final int getProximity() { return this.proximity; } /** * Gets the alternate path for this referral. * * @return the altPath */ public final String getAltPath() { return this.altPath; } /** * Gets the time-to-live value for this referral in seconds. * * @return the ttl */ public final int getTtl() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
} // Test implementation classes private static class TestWebApiManager implements WebApiManager { private final String basePath; private boolean processCalled = false; public TestWebApiManager(String basePath) { this.basePath = basePath; } @Override public boolean matches(HttpServletRequest request) { if (request == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2GetDfsReferralResponse.java
+ proximity + ",ttl=" + ttl + ",pathOffset=" + pathOffset + ",altPathOffset=" + altPathOffset + ",nodeOffset=" + nodeOffset + ",path=" + path + ",altPath=" + altPath + ",node=" + node + "]"); } } int pathConsumed; int numReferrals; int flags; Referral[] referrals; Trans2GetDfsReferralResponse() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
/** * Fess configuration for settings. */ protected final FessConfig fessConfig; FilePurgeVisitor(final Path basePath, final String imageExtention, final long expiry) { this.basePath = basePath; this.imageExtention = imageExtention; this.expiry = expiry; fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
verifyPathPattern("AdminWebauth", "/admin/webauth/"); verifyPathPattern("AdminWebconfig", "/admin/webconfig/"); } private void verifyPathPattern(String prefix, String basePath) throws Exception { // Helper method to verify common pattern String baseFieldName = "path_" + prefix + "_" + prefix + "Jsp"; String detailsFieldName = "path_" + prefix + "_" + prefix + "DetailsJsp";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/ReferralTest.java
bb.put(path.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Alt path string at offset 54 bb.position(54); String altPath = "\\\\alt\\path"; bb.put(altPath.getBytes(StandardCharsets.UTF_16LE)); bb.putShort((short) 0); // Node string at offset 76 bb.position(76); String node = "NODE01";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 22K bytes - Viewed (0)