Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for failures (3.67 sec)

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

                                final DocWriteRequest<?> req = requests.get(i);
                                final Failure failure = resp.getFailure();
                                logger.debug("Failed Request: {}\n=>{}", req, failure.getMessage());
                            }
                        }
                    }
                }
    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/SmbSessionImpl.java

                            && ! ( this.credentials.isGuest() || this.credentials.isAnonymous() ) ) {
                        throw new SmbAuthException(NtStatus.NT_STATUS_LOGON_FAILURE);
                    }
                    else if ( !this.credentials.isAnonymous() && response.isLoggedInAsGuest() ) {
                        anonymous = true;
                    }
    
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsFailureUrlCQ.java

        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "failure_url";
        }
    
        @Override
        public String xgetAliasName() {
            return "failure_url";
        }
    
        // ===================================================================================
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 57.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, value);
        }
    
        default String getIgnoreFailureType() {
            return getSystemProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, Constants.DEFAULT_IGNORE_FAILURE_TYPE);
        }
    
        default void setFailureCountThreshold(final int value) {
            setSystemPropertyAsInt(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, value);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTransportImpl.java

                    doRecvSMB2(resp);
                }
                else {
                    doRecvSMB1(resp);
                }
            }
            catch ( Exception e ) {
                log.warn("Failure decoding message, disconnecting transport", e);
                response.exception(e);
                synchronized ( response ) {
                    response.notifyAll();
                }
                throw e;
            }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

                    }
                }
                catch ( Exception e2 ) {
                    log.debug("Failed to close after failure", e2);
                    e.addSuppressed(e2);
                }
                throw e;
            }
        }
    
    
        @Override
        public void createNewFile () 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)
Back to top