Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for operating (0.18 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

                throw new SmbException( "Invalid operation for workgroups, servers, or shares" );
            }
    
            resolveDfs(null);
            dest.resolveDfs(null);
    
            if (!tree.equals(dest.tree)) {
                throw new SmbException( "Invalid operation for workgroups, servers, or shares" );
            }
    
            if( log.level >= 3 )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  2. src/main/java/org/codelibs/core/misc/DynamicProperties.java

            return getProperties().remove(key);
        }
    
        @Override
        public void save(final OutputStream out, final String comments) {
            throw new UnsupportedOperationException("Unsupported operation.");
        }
    
        @Override
        public Object setProperty(final String key, final String value) {
            return getProperties().setProperty(key, value);
        }
    
        @Override
        public int size() {
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                 * necessarily populated with header data because they're not writing
                 * the header, only their body. But for whatever reason one might wish
                 * to populate fields if the writeXxx operation needs this header data
                 * for whatever reason. I copy over the uid here so it appears correct
                 * in logging output. Logging of andx segments of messages inadvertantly
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Nov 28 10:56:27 GMT 2022
    - 14.3K bytes
    - Viewed (0)
  4. src/main/config/openapi/openapi-user.yaml

    servers:
      - url: http://localhost:8080/api/v1
    tags:
      - name: search
        description: Search operations
      - name: popularword
        description: Popular word operations
      - name: monitor
        description: Monitoring operations
      - name: suggest
        description: Suggest operations
      - name: favorite
        description: Favorite operations
    paths:
      /documents:
        get:
          tags:
            - search
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                return;
            }
    
            if (!ComponentUtil.getFessConfig().isWebApiPopularWord()) {
                writeJsonResponse(HttpServletResponse.SC_BAD_REQUEST, escapeJsonKeyValue(MESSAGE_FIELD, "Unsupported operation."));
                return;
            }
    
            final String seed = request.getParameter("seed");
            String[] tags = SearchRequestParams.getParamValueArray(request, "label");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 02:17:23 GMT 2024
    - 50.3K bytes
    - Viewed (0)
  6. README.md

     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
     * A proper test suite
     * Various fixes
    
    ## Others
    
    ### This jcifs or jcifs-ng
    
    Plain Text
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed May 10 09:29:34 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

                }
                dest.exists();
    
                if ( this.fileLocator.isRootOrShare() || dest.fileLocator.isRootOrShare() ) {
                    throw new SmbException("Invalid operation for workgroups, servers, or shares");
                }
    
                if ( !sh.isSameTree(th) ) {
                    // trigger requests to resolve the actual target
                    exists();
    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)
  8. src/main/java/jcifs/smb/SmbTreeImpl.java

                        break;
                    default:
                        throw new SmbException("Invalid operation for " + svc + " service: " + request);
                    }
                    break;
                default:
                    throw new SmbException("Invalid operation for " + svc + " service" + request);
                }
            }
        }
    
    
        @SuppressWarnings ( "unchecked" )
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 29.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTransportImpl.java

            case 0xC00000BB: // NT_STATUS_NOT_SUPPORTED
                throw new SmbUnsupportedOperationException();
            case NtStatus.NT_STATUS_PATH_NOT_COVERED:
                // samba fails to report the proper status for some operations
            case 0xC00000A2: // NT_STATUS_MEDIA_WRITE_PROTECTED
                checkReferral(resp, req.getPath(), req);
            case NtStatus.NT_STATUS_BUFFER_OVERFLOW:
                break; /* normal for DCERPC named pipes */
    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