- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 524 for DIRECTORY (0.04 sec)
-
src/test/java/jcifs/smb/DosFileFilterTest.java
"48, 16, true", // DIRECTORY | ARCHIVE vs DIRECTORY "48, 32, true", // DIRECTORY | ARCHIVE vs ARCHIVE "21, 5, true", // READONLY | SYSTEM | DIRECTORY vs READONLY | SYSTEM // Negative cases (should be rejected) "1, 2, false", // READONLY vs HIDDEN "2, 1, false", // HIDDEN vs READONLY "16, 32, false", // DIRECTORY vs ARCHIVE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/StandardSystemProperty.java
/** Line separator ("\n" on UNIX). */ LINE_SEPARATOR("line.separator"), /** User's account name. */ USER_NAME("user.name"), /** User's home directory. */ USER_HOME("user.home"), /** User's current working directory. */ USER_DIR("user.dir"); private final String key; StandardSystemProperty(String key) { this.key = key; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Mar 06 10:03:30 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
if (value != null) { return value; } return super.prepareWebappPath(); } /** * Returns the directory path for temporary mark files. * * @return the absolute path to the fessboot directory in the system temp directory */ @Override protected String getMarkDir() { return new File(System.getProperty(JAVA_IO_TMPDIR), "fessboot").getAbsolutePath();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ModelParser.java
/** * Option that can be specified in the options map. The value should be a Boolean. */ String STRICT = "strict"; /** * Locates the pom in the given directory. * * @param dir the directory to locate the pom for, never {@code null} * @return a {@code Source} pointing to the located pom or an empty {@code Optional} if none was found by this parser */ @Nonnull
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Sep 10 17:18:47 UTC 2024 - 3.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnup/UpgradeOptions.java
@Nonnull Optional<String> modelVersion(); /** * Returns the directory to use as starting point for POM discovery. * If not specified, the current directory will be used. * * @return an {@link Optional} containing the directory path, or empty if not specified */ @Nonnull Optional<String> directory(); /** * Should use inference when upgrading (remove redundant information).
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Aug 29 12:46:51 UTC 2025 - 3.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/TempFileCreator.java
* a file or directory that would be more accessible. */ @J2ktIncompatible @GwtIncompatible @J2ObjCIncompatible abstract class TempFileCreator { static final TempFileCreator INSTANCE = pickSecureCreator(); /** * @throws IllegalStateException if the directory could not be created (to implement the contract
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 12.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java
return ("SmbQueryInfoStandard[" + "allocationSize=" + allocationSize + ",endOfFile=" + endOfFile + ",numberOfLinks=" + numberOfLinks + ",deletePending=" + deletePending + ",directory=" + directory + "]"); } } private final int informationLevel; Info info; Trans2QueryPathInformationResponse(final int informationLevel) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/os_other.go
// baseDir is not honored in plan9 and solaris platforms. return os.MkdirAll(dirPath, perm) } // readDirFn applies the fn() function on each entries at dirPath, doesn't recurse into // the directory itself, if the dirPath doesn't exist this function doesn't return // an error. func readDirFn(dirPath string, filter func(name string, typ os.FileMode) error) error { d, err := Open(dirPath) if err != nil {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Sep 13 15:14:36 UTC 2023 - 4K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
CMD ["fastapi", "run", "app/main.py", "--port", "80"] ``` 1. Start from the official Python base image. 2. Set the current working directory to `/code`. This is where we'll put the `requirements.txt` file and the `app` directory. 3. Copy the file with the requirements to the `/code` directory. Copy **only** the file with the requirements first, not the rest of the code.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1) -
lib/fips140/fips140.sum
# SHA256 checksums of snapshot zip files in this directory. # These checksums are included in the FIPS security policy # (validation instructions sent to the lab) and MUST NOT CHANGE. # That is, the zip files themselves must not change. # # It is okay to add new zip files to the list, and it is okay to # remove zip files from the list when they are removed from # this directory. To update this file: # # go test cmd/go/internal/fips140 -update #
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Jan 29 15:10:35 UTC 2025 - 525 bytes - Viewed (0)