- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 1,450 for director (0.07 sec)
-
src/test/java/jcifs/smb/SmbFilenameFilterTest.java
} verifyNoInteractions(mockDir); } /** * Edge: passing a null directory object. Interface allows null; implementation decides. */ @Test @DisplayName("null directory is handled by implementation") void handlesNullDirectory() throws Exception { SmbFilenameFilter filter = (dir, name) -> dir == null;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFilenameFilter.java
* * This interface allows selective filtering of filenames * when listing directory contents in SMB shares. */ public interface SmbFilenameFilter { /** * Tests whether the specified filename should be included in a file list. * * @param dir the directory containing the file * @param name the name of the file * @return whether the given filename should be included
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0105=Rethrew {0} as a runtime exception. ECL0106=IOException occurred, because {0} ECL0107=InvalidKeyException occurred, because {0} ECL0108=The path is null. ECL0109=Could not create a parent directory of {0} ECL0110=A parent directory of {0} is not a directory. ECL0111={0} is not a file. ECL0112=Could not store {0} ECL0113=NoSuchPaddingException occurred, because {0} ECL0114=NoSuchAlgorithmException occurred, because {0}
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K 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) -
src/main/webapp/css/admin/adminlte.min.css.map
#fff;\n}\n\n.direct-chat-secondary .right > .direct-chat-text::after, .direct-chat-secondary .right > .direct-chat-text::before {\n border-left-color: #6c757d;\n}\n\n.direct-chat-success .right > .direct-chat-text {\n background-color: #28a745;\n border-color: #28a745;\n color: #fff;\n}\n\n.direct-chat-success .right > .direct-chat-text::after, .direct-chat-success .right > .direct-chat-text::before {\n border-left-color: #28a745;\n}\n\n.direct-chat-info .right > .direct-chat-text {\n background-color:...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 3.7M bytes - Viewed (1) -
okhttp-osgi-tests/src/test/kotlin/okhttp3/osgi/OsgiTest.kt
setRunfw(RESOLVE_OSGI_FRAMEWORK) runee = RESOLVE_JAVA_VERSION setRunRequires(runRequireString) } } private fun RepositoryPlugin.deployDirectory(directory: Path) { for (path in fileSystem.list(directory)) { deployFile(path) } } private fun RepositoryPlugin.deployClassPath() { val classpath = System.getProperty("java.class.path") val entries =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt
box.write(buffer, 1) result.write(box.copy(), 1) } return result } tailrec fun File.isDescendentOf(directory: File): Boolean { val parentFile = parentFile ?: return false if (parentFile == directory) return true return parentFile.isDescendentOf(directory) } /** * See FinalizationTester for discussion on how to best trigger GC in tests.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 4.3K 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) -
docs/en/docs/environment-variables.md
``` This way, when you type `python` in the terminal, the system will find the Python program in `/opt/custompython/bin` (the last directory) and use that one. //// //// tab | Windows Let's say you install Python and it ends up in a directory `C:\opt\custompython\bin`. If you say yes to update the `PATH` environment variable, then the installer will add `C:\opt\custompython\bin` to the `PATH` environment variable.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 8.1K bytes - Viewed (0)