- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 1,450 for director (0.04 sec)
-
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java
} /** * Returns the current working directory for the Maven execution. * This is typically the directory from which Maven was invoked. * * @return the current working directory path */ @Nonnull Path cwd(); /** * Returns the Maven installation directory. * This is usually set by the Maven launcher script using the "maven.home" system property.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComCreateDirectory.java
/** * SMB1 COM_CREATE_DIRECTORY command implementation. * * This command creates a new directory on the server. */ public class SmbComCreateDirectory extends ServerMessageBlock { /** * Creates a new SMB1 create directory request. * * @param config the CIFS configuration * @param directoryName the name of the directory to create */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/FileEntry.java
package jcifs.smb1.smb1; /** * Represents a file or directory entry in SMB1 protocol. */ public interface FileEntry { /** * Gets the name of the file or directory. * * @return the file or directory name */ String getName(); /** * Gets the type of the entry. * * @return the entry type */ int getType(); /** * Gets the file attributes. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 881 bytes - Viewed (0) -
cmd/os_unix.go
} // Forked from Golang but chooses to avoid performing lookup // // osMkdirAll creates a directory named path, // along with any necessary parents, and returns nil, // or else returns an error. // The permission bits perm (before umask) are used for all // directories that MkdirAll creates. // If path is already a directory, MkdirAll does nothing // and returns nil.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 9.3K bytes - Viewed (0) -
cmd/os_windows.go
// It got deleted in the meantime, not found // or returns too many symlinks ignore this // file/directory. if osIsNotExist(err) || isSysErrPathNotFound(err) || isSysErrTooManySymlinks(err) { continue } return nil, err } if !opts.followDirSymlink && fi.IsDir() { // directory symlinks are ignored. continue } case data.FileAttributes&syscall.FILE_ATTRIBUTE_DIRECTORY != 0:
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Feb 18 16:25:55 UTC 2025 - 5K bytes - Viewed (0) -
.github/dependabot.yml
# version: 2 updates: - package-ecosystem: "maven" directory: "/" schedule: interval: "daily" - package-ecosystem: "maven" directory: "/" schedule: interval: "daily" target-branch: "maven-4.0.x" labels: - "mvn40" - "dependencies" - package-ecosystem: "maven" directory: "/" schedule: interval: "daily"
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Aug 17 19:26:41 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileIntegrationTest.java
// List empty directory String[] files = checkDir.list(); assertNotNull(files, "List should not be null"); assertEquals(0, files.length, "Empty directory should have no files"); // Get directory size (should be 0 for directories) assertEquals(0, checkDir.length(), "Directory length should be 0"); checkDir.close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 56K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
lock.writeLock().unlock(); } } /** * Gets the directory path for this cache entry * @return the directory path */ public String getDirectoryPath() { return directoryPath; } /** * Gets the lease key associated with this directory cache * @return the lease key */ public Smb2LeaseKey getLeaseKey() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileStandardInfo.java
dst[dstIndex++] = (byte) (this.directory ? 1 : 0); return dstIndex - start; } @Override public String toString() { return ("SmbQueryInfoStandard[" + "allocationSize=" + this.allocationSize + ",endOfFile=" + this.endOfFile + ",numberOfLinks=" + this.numberOfLinks + ",deletePending=" + this.deletePending + ",directory=" + this.directory + "]"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# o flatDirectoryPackage: (Required - Default '') # This is only for CSharp. # e.g. Aaa.Bbb.DBFlute --> Directory: source/Aaa.Bbb.DBFlute/AllCommon # o omitDirectoryPackage: (NotRequired - Default '') # This is only for CSharp. # e.g. Aaa --> Directory: source/Bbb/DBFlute/AllCommon # #; outputPackageAdjustmentMap = map:{ # ; flatDirectoryPackage = Aaa.Bbb.DBFlute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 9.2K bytes - Viewed (0)