Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 529 for gats (0.57 sec)

  1. src/main/java/jcifs/util/transport/TransportException.java

         * @param rootCause the cause of this exception
         */
        public TransportException(final String msg, final Throwable rootCause) {
            super(msg, rootCause);
        }
    
        /**
         * Gets the root cause of this exception.
         * @return root cause of this exception
         */
        @Deprecated
        public Throwable getRootCause() {
            return getCause();
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponse.java

         */
        public Trans2GetDfsReferralResponse(final Configuration config) {
            super(config);
            this.setSubCommand(SmbComTransaction.TRANS2_GET_DFS_REFERRAL);
        }
    
        /**
         * Gets the DFS referral response buffer containing the referral data.
         *
         * @return the buffer
         */
        public DfsReferralResponseBuffer getDfsResponse() {
            return this.dfsResponse;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. compat/maven-builder-support/src/main/java/org/apache/maven/building/Source.java

     *
     * @deprecated since 4.0.0, use {@link org.apache.maven.api.services} instead
     */
    @Deprecated(since = "4.0.0")
    public interface Source {
    
        /**
         * Gets a byte stream to the source contents. Closing the returned stream is the responsibility of the caller.
         *
         * @return A byte stream to the source contents, never {@code null}.
         * @throws IOException in case of IO issue
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 18:51:29 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/util/WebApiUtil.java

         */
        public static void setObject(final String name, final Object value) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(name, value));
        }
    
        /**
         * Gets an object from the current request attributes.
         *
         * @param <T> The type of the object
         * @param name The attribute name
         * @return The attribute value, or null if not found
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponse.java

         *
         * @param config the SMB configuration
         */
        public TransPeekNamedPipeResponse(final Configuration config) {
            super(config);
        }
    
        /**
         * Gets the number of bytes available to read from the named pipe.
         *
         * @return the available
         */
        public final int getAvailable() {
            return this.available;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exception/WebApiException.java

        private static final long serialVersionUID = 1L;
    
        /**
         * The HTTP status code associated with this exception.
         */
        private final int statusCode;
    
        /**
         * Gets the HTTP status code associated with this exception.
         *
         * @return The HTTP status code
         */
        public int getStatusCode() {
            return statusCode;
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/GsaConfigParser.java

        }
    
        /**
         * Gets the web crawling configuration generated from the parsed GSA config.
         *
         * @return an optional containing the web configuration, or empty if no web URLs were found
         */
        public OptionalEntity<WebConfig> getWebConfig() {
            return OptionalUtil.ofNullable(webConfig);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ioctl/SrvRequestResumeKeyResponse.java

         * This response contains the resume key used for server-side copy operations.
         */
        public SrvRequestResumeKeyResponse() {
        }
    
        private byte[] resumeKey;
    
        /**
         * Gets the resume key for server-side copy operations
         * @return the resumeKey
         */
        public byte[] getResumeKey() {
            return this.resumeKey;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java

            this.ciphers = ciphers;
        }
    
        /**
         * Default constructor for decoding.
         */
        public EncryptionNegotiateContext() {
        }
    
        /**
         * Gets the supported encryption ciphers.
         *
         * @return array of encryption cipher IDs
         */
        public int[] getCiphers() {
            return this.ciphers;
        }
    
        /**
         * {@inheritDoc}
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/witness/WitnessUnregisterMessage.java

         */
        public void setContextHandle(byte[] contextHandle) {
            this.contextHandle = contextHandle != null ? contextHandle.clone() : null;
        }
    
        /**
         * Gets the context handle.
         *
         * @return the context handle
         */
        public byte[] getContextHandle() {
            return contextHandle != null ? contextHandle.clone() : null;
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 3.8K bytes
    - Viewed (0)
Back to top