Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for Mirror (0.17 sec)

  1. src/main/java/jcifs/dcerpc/DcerpcException.java

                }
            }
    
            return "0x" + Hexdump.toHexString(errcode, 8);
        }
    
        private int error;
    
    
        DcerpcException ( int error ) {
            super(getMessageByDcerpcError(error));
            this.error = error;
        }
    
    
        /**
         * @param msg
         */
        public DcerpcException ( String msg ) {
            super(msg);
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtException.java

                    break;
                case UNSPECIFIED:
                    result += "Unspecified error";
                    break;
                default:
                    result += "Unknown error code: " + errorCode;
                }
                break;
            default:
                result += "unknown error class: " + errorClass;
            }
            return result;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Response.java

         * @return whether signature verification failed
         */
        boolean isVerifyFailed ();
    
    
        /**
         * 
         * @return whether the response is an error
         */
        boolean isError ();
    
    
        /**
         * Set error status
         */
        void error ();
    
    
        /**
         * 
         * @return the message timeout
         */
        Long getExpiration ();
    
    
        /**
         * 
         * @param exp
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbException.java

    import java.io.PrintWriter;
    
    /**
     * There are hundreds of error codes that may be returned by a CIFS
     * server. Rather than represent each with it's own <code>Exception</code>
     * class, this class represents all of them. For many of the popular
     * error codes, constants and text messages like "The device is not ready"
     * are provided.
     * <p>
     * The jCIFS client maps DOS error codes to NTSTATUS codes. This means that
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/NameServiceClient.java

         *            the hexcode of the name
         * @param scope
         *            the scope of the name
         * @return resolved addresses
         * @throws java.net.UnknownHostException
         *             if there is an error resolving the name
         */
        NetbiosAddress[] getNbtAllByAddress ( String host, int type, String scope ) throws UnknownHostException;
    
    
        /**
         * Retrieve all addresses of a host by it's address. NetBIOS hosts can
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.9K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/curl/CurlTest.java

                final String content = response.getContentAsString();
                logger.info(content);
                assertTrue(content.length() > 0);
            }, e -> {
                logger.log(Level.SEVERE, "error", e);
                fail();
            });
        }
    
        /*
        @Test
        public void test_Get_ssl() throws Exception {
            final String filename = "config/certs/http_ca.crt";
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/http/NtlmSsp.java

         *            The response.
         * @param challenge
         *            The domain controller challenge.
         * @return credentials passed in the servlet request
         * @throws IOException
         *             If an IO error occurs.
         */
        public NtlmPasswordAuthentication doAuthentication ( CIFSContext tc, HttpServletRequest req, HttpServletResponse resp, byte[] challenge )
                throws IOException {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTreeImpl.java

                throw new SMBProtocolDowngradeException("Signature error during negotiate validation", e);
            }
            catch ( SmbException e ) {
                if ( log.isDebugEnabled() ) {
                    log.debug(String.format("VALIDATE_NEGOTIATE_INFO response code 0x%x", e.getNtStatus()));
                }
                log.trace("VALIDATE_NEGOTIATE_INFO returned error", e);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.error;
    
    import java.util.HashMap;
    import java.util.Map;
    
    public class ErrorForm {
    
        public Map<String, String[]> fields = new HashMap<>();
    
        public String q;
    
        public String url;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 919 bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/error/ErrorAction.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.error;
    
    import org.codelibs.fess.app.web.base.FessSearchAction;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.HtmlResponse;
    
    public class ErrorAction extends FessSearchAction {
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top