Search Options

Results per page
Sort
Preferred Languages
Advance

Results 341 - 350 of 6,271 for FILE (0.02 sec)

  1. src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java

                if (file.isDirectory()) {
                    traverseFileSystem(rootDir, file, handler);
                } else {
                    final int pos = FileUtil.getCanonicalPath(rootDir).length();
                    final String filePath = FileUtil.getCanonicalPath(file);
                    final String resourcePath = filePath.substring(pos + 1).replace('\\', '/');
                    final InputStream is = InputStreamUtil.create(file);
                    try {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    errors.invalid_design_jsp_file_name = Invalid JSP file.
    errors.design_jsp_file_does_not_exist = The JSP file does not exist.
    errors.design_file_name_is_not_found = The file name is not specified.
    errors.failed_to_write_design_image_file = Failed to upload an image file.
    errors.failed_to_update_jsp_file = Failed to update the JSP file.
    errors.design_file_name_is_invalid = The file name is invalid.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_en.properties

    errors.invalid_design_jsp_file_name = Invalid JSP file.
    errors.design_jsp_file_does_not_exist = The JSP file does not exist.
    errors.design_file_name_is_not_found = The file name is not specified.
    errors.failed_to_write_design_image_file = Failed to upload an image file.
    errors.failed_to_update_jsp_file = Failed to update the JSP file.
    errors.design_file_name_is_invalid = The file name is invalid.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

        private ProtwordsFile protwordsFile;
        private File testFile;
        private SystemHelper systemHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            // Create test file with content
            testFile = File.createTempFile("test_protwords", ".txt");
            testFile.deleteOnExit();
    
            // Write test content to file
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  5. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        String path = request.getPath();
        try {
          if (!path.startsWith("/") || path.contains("..")) throw new FileNotFoundException();
    
          File file = new File(root + path);
          return file.isDirectory()
              ? directoryToResponse(path, file)
              : fileToResponse(path, file);
        } catch (FileNotFoundException e) {
          return new MockResponse()
              .setStatus("HTTP/1.1 404")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jan 02 02:50:44 UTC 2019
    - 4.7K bytes
    - Viewed (0)
  6. compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/FileProfileActivator.java

                        fileString = interpolator.interpolate(fileString, "").replace("\\", "/");
                        File file = new File(fileString);
                        return file.exists();
                    }
    
                    // check if the file is missing, if it is then the profile will be active
                    fileString = actFile.getMissing();
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/fileauth/CreateForm.java

        public String hostname;
    
        /** The port number of the file server (0 to 2147483647). */
        @Min(value = 0)
        @Max(value = 2147483647)
        @ValidateTypeFailure
        public Integer port;
    
        /** The protocol scheme for file access (maximum 10 characters). */
        @Size(max = 10)
        public String protocolScheme;
    
        /** The username for file authentication (required, maximum 100 characters). */
        @Required
        @Size(max = 100)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonManager.java

    /*
     * Licensed to the Apache Software Foundation (ASF) under one
     * or more contributor license agreements.  See the NOTICE file
     * distributed with this work for additional information
     * regarding copyright ownership.  The ASF licenses this file
     * to you under the Apache License, Version 2.0 (the
     * "License"); you may not use this file except in compliance
     * with the License.  You may obtain a copy of the License at
     *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         */
        public static final int FILE_OPEN_IF = 0x3;
        /**
         * If file exists, overwrite it. Otherwise fail
         */
        public static final int FILE_OVERWRITE = 0x4;
        /**
         * If file exists, overwrite it. Otherwise create the file
         */
        public static final int FILE_OVERWRITE_IF = 0x5;
    
        /**
         * File being created or opened must be a directory
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/CopyUtil.java

        // from File to File
        //
        /**
         * Copies from a file to a file.
         *
         * @param in the input file (must not be {@literal null})
         * @param out the output file (must not be {@literal null})
         * @return the number of bytes copied
         */
        public static int copy(final File in, final File out) {
            assertArgumentNotNull("in", in);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 45.2K bytes
    - Viewed (0)
Back to top