Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Liles (0.17 sec)

  1. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                if (response.getHttpStatusCode() == 200) {
                    logger.info("Flushed config files.");
                } else {
                    logger.warn("Failed to flush config files.");
                }
            } catch (final Exception e) {
                logger.warn("Failed to flush config files.", e);
            }
        }
    
        public void flushConfigFiles(final Runnable callback) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * identical to the list returned by the parameterless <code>listFiles()</code>
         * method minus files filtered by the specified filename filter.
         * 
         * If strict resource lifecycle is used, make sure you close the individual files after use.
         *
         * @param filter
         *            a filter to exclude files from the results
         * @return An array of <tt>SmbResource</tt> objects
         * @throws SmbException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                    Version.V20,
                                    prefix + prefix2 + "systemPath",
                                    key,
                                    "should not point at files within the project directory, " + sysPath
                                            + " will be unresolvable by dependent projects",
                                    dependency);
                        }
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

            boolean cont = false;
            switch ( resp.getErrorCode() ) {
            case NtStatus.NT_STATUS_OK:
            case NtStatus.NT_STATUS_NO_MORE_FILES:
                cont = true;
                break;
            case NtStatus.NT_STATUS_PENDING:
                // must be the last
                cont = false;
                break;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
Back to top