Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Ex (0.13 sec)

  1. src/main/java/jcifs/smb/SmbSessionImpl.java

                        log.debug("No digest setup " + anonymous + " B " + isSignatureSetupRequired());
                    }
                    setSessionSetup(response);
                    if ( ex != null ) {
                        throw ex;
                    }
                    return (T) ( response != null ? response.getNextResponse() : null );
                }
            }
        }
    
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

            AllocInfo ai;
            try {
                ai = queryFSInformation(th, AllocInfo.class, FileSystemInformation.FS_SIZE_INFO);
            }
            catch ( SmbException ex ) {
                log.debug("getDiskFreeSpace", ex);
                switch ( ex.getNtStatus() ) {
                case NtStatus.NT_STATUS_INVALID_INFO_CLASS:
                case NtStatus.NT_STATUS_UNSUCCESSFUL: // NetApp Filer
                    if ( !th.isSMB2() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            public String getQuery() {
                return request.getParameter("q");
            }
    
            @Override
            public String[] getExtraQueries() {
                return getParamValueArray(request, "ex_q");
            }
    
            @Override
            public Map<String, String[]> getFields() {
                final Map<String, String[]> fields = new HashMap<>();
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    // and assert the error response. The purpose is to validate the API handlers response when the object layer is uninitialized.
    // Usage hint: Should be used at the end of the API end points tests (ex: check the last few lines of `testAPIListObjectPartsHandler`),
    // need a sample HTTP request to be sent as argument so that the relevant handler is called, the handler registration is expected
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
Back to top