Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,450 for director (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFilenameFilter.java

    /**
     * Filter interface for SMB filename filtering.
     * 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 true if the file should be included, false otherwise
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. cmd/xl-storage_test.go

    }
    
    func TestXLStorageIsDirEmpty(t *testing.T) {
    	tmp := t.TempDir()
    
    	// Should give false on non-existent directory.
    	dir1 := slashpath.Join(tmp, "non-existent-directory")
    	if isDirEmpty(dir1, true) {
    		t.Error("expected false for non-existent directory, got true")
    	}
    
    	// Should give false for not-a-directory.
    	dir2 := slashpath.Join(tmp, "file")
    	err := os.WriteFile(dir2, []byte("hello"), 0o777)
    	if err != nil {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 66K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb1/trans2/Trans2FindNext2.java

    import jcifs.internal.util.SMBUtil;
    import jcifs.util.Hexdump;
    
    /**
     * Trans2 FindNext2 request message for SMB1 directory enumeration continuation.
     * This class implements the TRANS2_FIND_NEXT2 transaction to retrieve subsequent
     * directory entries after a Trans2FindFirst2 request, supporting large directory listings.
     */
    public class Trans2FindNext2 extends SmbComTransaction {
    
        private final int sid, informationLevel;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. guava/pom.xml

        <dependency>
          <groupId>com.google.j2objc</groupId>
          <artifactId>j2objc-annotations</artifactId>
        </dependency>
      </dependencies>
      <build>
        <resources>
          <resource>
            <directory>..</directory>
            <includes>
              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 06 21:05:32 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java

            if (results == null) {
                return new FileEntry[0];
            }
            return results;
        }
    
        /**
         * Opens a directory for enumeration
         *
         * @return the opened directory file entry
         * @throws CIFSException if an error occurs opening the directory
         */
        @SuppressWarnings("resource")
        @Override
        protected FileEntry open() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

     * bytes in length.
     *
     * The cache stores its data in a directory on the filesystem. This directory must be exclusive to
     * the cache; the cache may delete or overwrite files from its directory. It is an error for
     * multiple processes to use the same cache directory at the same time.
     *
     * This cache limits the number of bytes that it will store on the filesystem. When the number of
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  8. 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)
  9. apache-maven/src/assembly/maven/bin/mvn.cmd

    :init
    
    set "CLASSWORLDS_CONF=%MAVEN_HOME%\bin\m2.conf"
    
    @REM Find the project basedir, i.e., the directory that contains the directory ".mvn".
    @REM Fallback to current working directory if not found.
    
    set "EXEC_DIR=%CD%"
    set "WDIR=%EXEC_DIR%"
    
    @REM Look for the --file switch and start the search for the .mvn directory from the specified
    @REM POM location, if supplied.
    
    set FILE_ARG=
    :arg_loop
    if "%~1" == "-f" (
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 24 09:49:07 UTC 2025
    - 9.6K bytes
    - Viewed (3)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.mylasta.direction;
    
    import java.math.BigDecimal;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.core.direction.exception.ConfigPropertyNotFoundException;
    
    public class FessConfigTest extends UnitFessTestCase {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.8K bytes
    - Viewed (0)
Back to top