Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for Requested (0.04 sec)

  1. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

        /**
         * Flag indicating that owner security information is requested or being set.
         */
        int OWNER_SECURITY_INFO = 0x1;
    
        /**
         * Flag indicating that group security information is requested or being set.
         */
        int GROUP_SECURITY_INFO = 0x2;
    
        /**
         * Flag indicating that discretionary access control list (DACL) information is requested or being set.
         */
        int DACL_SECURITY_INFO = 0x4;
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResourceException.java

         * @param requested requested resources
         */
        public SmbResourceException(String message, int errorCode, ResourceType resourceType, long available, long requested) {
            super(message, errorCode, Severity.TRANSIENT, Category.RESOURCE);
            this.resourceType = resourceType;
            this.availableResources = available;
            this.requestedResources = requested;
    
            // Add context
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/SpecificHostSocketFactory.kt

      /** Sets the [real] address for [requested].  */
      operator fun set(
        requested: InetAddress,
        real: InetSocketAddress,
      ) {
        hostMapping[requested] = real
      }
    
      override fun createSocket(): Socket =
        object : Socket() {
          override fun connect(
            endpoint: SocketAddress?,
            timeout: Int,
          ) {
            val requested = (endpoint as InetSocketAddress)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/NtStatus.java

        int NT_STATUS_NOTIFY_ENUM_DIR = 0x0000010C;
        /** The data was too large to fit into the specified buffer */
        int NT_STATUS_BUFFER_OVERFLOW = 0x80000005;
        /** The requested operation was unsuccessful */
        int NT_STATUS_UNSUCCESSFUL = 0xC0000001;
        /** The requested operation is not implemented */
        int NT_STATUS_NOT_IMPLEMENTED = 0xC0000002;
        /** The specified information class is invalid */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/create/LeaseV2CreateContextRequest.java

        public void setLeaseKey(Smb2LeaseKey leaseKey) {
            this.leaseKey = leaseKey;
        }
    
        /**
         * Gets the requested lease state flags for V2
         * @return the requested lease state
         */
        public int getLeaseState() {
            return leaseState;
        }
    
        /**
         * Sets the requested lease state flags for V2
         * @param leaseState the lease state to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java

            this.maxVersion = maxVersion;
        }
    
        /**
         * Get number of credits requested
         *
         * @return credits requested
         */
        public int getCreditsRequested() {
            return creditsRequested;
        }
    
        /**
         * Set number of credits requested
         *
         * @param creditsRequested credits to request
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 05:11:12 UTC 2025
    - 4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/dcerpc/DcerpcConstants.java

        /**
         * Did not execute flag - indicates request was not executed
         */
        int DCERPC_DID_NOT_EXECUTE = 0x20;
        /**
         * Maybe flag - indicates 'maybe' call semantics requested
         */
        int DCERPC_MAYBE = 0x40; /* `maybe' call semantics requested */
        /**
         * Object UUID flag - if true, a non-nil object UUID is present
         */
        int DCERPC_OBJECT_UUID = 0x80; /* if true, a non-nil object UUID */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/create/LeaseV1CreateContextRequest.java

        public void setLeaseKey(Smb2LeaseKey leaseKey) {
            this.leaseKey = leaseKey;
        }
    
        /**
         * Gets the requested lease state flags
         * @return the requested lease state
         */
        public int getLeaseState() {
            return leaseState;
        }
    
        /**
         * Sets the requested lease state flags
         * @param leaseState the lease state to set
         */
        public void setLeaseState(int leaseState) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/UnsupportedSearchException.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    /**
     * Exception thrown when an unsupported search operation is requested.
     * This exception indicates that the requested search functionality is not available or supported.
     */
    public class UnsupportedSearchException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtStatus.java

     * of requested operations. The codes follow the Windows NT status code format.
     */
    public interface NtStatus {
    
        /* Don't bother to edit this. Everthing within the interface
         * block is automatically generated from the ntstatus package.
         */
    
        /** The operation completed successfully */
        int NT_STATUS_SUCCESS = 0x00000000;
        /** The requested operation was unsuccessful */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top