Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 117 of 117 for vfsfile (0.14 sec)

  1. src/main/java/org/codelibs/fess/helper/ViewHelper.java

         */
        private boolean existsPage(final String path) {
            final String realPath = LaServletContextUtil.getServletContext().getRealPath(path);
            final File file = new File(realPath);
            return file.isFile();
        }
    
        /**
         * Creates cached content with highlighting for a document.
         * Uses Handlebars templates to render the cached content.
         *
         * @param doc the document data map
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  2. configure.py

                                                          ask_python_bin_path,
                                                          default_python_bin_path)
        # Check if the path is valid
        if os.path.isfile(python_bin_path) and os.access(python_bin_path, os.X_OK):
          break
        elif not os.path.exists(python_bin_path):
          print('Invalid python path: {} cannot be found.'.format(python_bin_path))
        else:
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Wed Apr 30 15:18:54 UTC 2025
    - 48.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

            }
            if (!exists()) {
                return false;
            }
            return (this.attributes & ATTR_DIRECTORY) == ATTR_DIRECTORY;
        }
    
        @Override
        public boolean isFile() throws SmbException {
            if (this.fileLocator.isRootOrShare()) {
                return false;
            }
            exists();
            return (this.attributes & ATTR_DIRECTORY) == 0;
        }
    
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *
         * @return <code>true</code> if this <code>SmbFile</code> is not a directory
         * @throws SmbException if an error occurs while checking if this is a file
         */
    
        public boolean isFile() throws SmbException {
            if (getUncPath0().length() == 1) {
                return false;
            }
            exists();
            return (attributes & ATTR_DIRECTORY) == 0;
        }
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  5. api/go1.txt

    pkg syscall (linux-386), const AF_CAN ideal-int
    pkg syscall (linux-386), const AF_DECnet ideal-int
    pkg syscall (linux-386), const AF_ECONET ideal-int
    pkg syscall (linux-386), const AF_FILE ideal-int
    pkg syscall (linux-386), const AF_IEEE802154 ideal-int
    pkg syscall (linux-386), const AF_IPX ideal-int
    pkg syscall (linux-386), const AF_IRDA ideal-int
    pkg syscall (linux-386), const AF_ISDN ideal-int
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  6. api/go1.1.txt

    pkg syscall (linux-386), const AF_CAIF = 37
    pkg syscall (linux-386), const AF_CAN = 29
    pkg syscall (linux-386), const AF_DECnet = 12
    pkg syscall (linux-386), const AF_ECONET = 19
    pkg syscall (linux-386), const AF_FILE = 1
    pkg syscall (linux-386), const AF_IEEE802154 = 36
    pkg syscall (linux-386), const AF_INET6 = 10
    pkg syscall (linux-386), const AF_IPX = 4
    pkg syscall (linux-386), const AF_IRDA = 23
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  7. api/go1.2.txt

    pkg syscall (linux-arm-cgo), const AF_CAN ideal-int
    pkg syscall (linux-arm-cgo), const AF_DECnet ideal-int
    pkg syscall (linux-arm-cgo), const AF_ECONET ideal-int
    pkg syscall (linux-arm-cgo), const AF_FILE ideal-int
    pkg syscall (linux-arm-cgo), const AF_IEEE802154 ideal-int
    pkg syscall (linux-arm-cgo), const AF_IPX ideal-int
    pkg syscall (linux-arm-cgo), const AF_IRDA ideal-int
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Fri Oct 18 04:36:59 UTC 2013
    - 1.9M bytes
    - Viewed (1)
Back to top