- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 1,509 for director (0.06 sec)
-
apache-maven/src/assembly/maven/lib/jline-native/README.txt
This directory contains JLine native libraries extracted from JLine JAR. You can add your own build for platforms not natively supported by JLine. See here [1] on how to compile for your platform and here [2] how libraries follow JLine's directory and filename conventions. [1] https://github.com/jline/jline3/tree/master/native
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Oct 24 12:01:35 UTC 2024 - 428 bytes - Viewed (0) -
cmd/os-readdir-common.go
type readDirOpts struct { // The maximum number of entries to return count int // Follow directory symlink followDirSymlink bool } // Return all the entries at the directory dirPath. func readDir(dirPath string) (entries []string, err error) { return readDirWithOpts(dirPath, readDirOpts{count: -1}) } // Return up to count entries at the directory dirPath. func readDirN(dirPath string, count int) (entries []string, err error) {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jul 09 23:20:51 UTC 2021 - 1.3K 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) -
src/packaging/deb/init.d/fess
# Maximum number of open files MAX_OPEN_FILES=65535 # Maximum amount of locked memory #MAX_LOCKED_MEMORY= # Fess log directory LOG_DIR=${packaging.fess.log.dir} # Fess data directory DATA_DIR=${packaging.fess.var.dir} # Fess configuration directory CONF_DIR=${packaging.fess.conf.dir} # Maximum number of VMA (Virtual Memory Areas) a process can own MAX_MAP_COUNT=262144 # Path to the GC log file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Jan 15 06:32:15 UTC 2023 - 5.8K 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) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
*/ protected boolean done = false; /** * Constructs a ContentOutputStream with a specified threshold and temporary directory. * * @param threshold the threshold in bytes for writing to memory before writing to a file * @param tmpDir the temporary directory to create the file in */ public ContentOutputStream(final int threshold, final File tmpDir) { super(threshold, PREFIX, SUFFIX, tmpDir);
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponseTest.java
void testStandardInfoDirectory() { Trans2QueryPathInformationResponse.SmbQueryFileStandardInfo standardInfo = response.new SmbQueryFileStandardInfo(); standardInfo.directory = true; assertTrue(standardInfo.directory); } @Test @DisplayName("Should generate correct toString for standard info") void testStandardInfoToString() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
buildscripts/heal-inconsistent-versions.sh
MINIO_CONFIG_DIR="$WORK_DIR/.minio" MINIO=("$PWD/minio" --config-dir "$MINIO_CONFIG_DIR" server) if [ ! -x "$PWD/minio" ]; then echo "minio executable binary not found in current directory" exit 1 fi if [ ! -x "$PWD/minio" ]; then echo "minio executable binary not found in current directory" exit 1 fi function start_minio_4drive() { start_port=$1 export MINIO_ROOT_USER=minio export MINIO_ROOT_PASSWORD=minio123
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 26 05:07:25 UTC 2023 - 1.9K bytes - Viewed (0) -
.github/workflows/run-mint.sh
export SECRET_KEY="$3" export JOB_NAME="$4" export MINT_MODE="full" docker system prune -f || true docker volume prune -f || true docker volume rm $(docker volume ls -f dangling=true) || true ## change working directory cd .github/workflows/mint ## always pull latest docker pull docker.io/minio/mint:edge docker-compose -f minio-${MODE}.yaml up -d sleep 1m docker system prune -f || true docker volume prune -f || true
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Jan 20 14:49:07 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIteratorBase.java
import jcifs.CIFSException; import jcifs.CloseableIterator; import jcifs.ResourceNameFilter; import jcifs.SmbResource; /** * Base class for directory enumeration iterators. * * This abstract class provides common functionality for iterating * over directory entries in SMB file shares. * * @author mbechler */ public abstract class DirFileEntryEnumIteratorBase implements CloseableIterator<FileEntry> {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.7K bytes - Viewed (0)