Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 529 for gats (0.02 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java

     */
    @Experimental
    public interface Toolchain {
        /**
         * Gets the type of toolchain.
         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the underlying toolchain model.
         *
         * @return the toolchain model
         */
        ToolchainModel getModel();
    
        /**
         * Gets the platform tool executable.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Tue Feb 11 12:33:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/ProtwordsService.java

        @Resource
        protected DictionaryManager dictionaryManager;
    
        /** Configuration for Fess */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of protected words items.
         * @param dictId the dictionary ID
         * @param protwordsPager the pager for pagination
         * @return the list of protected words items
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
            /**
             * Gets the filter name for this SPNEGO configuration.
             *
             * @return The fully qualified class name of SpnegoAuthenticator
             */
            @Override
            public String getFilterName() {
                return SpnegoAuthenticator.class.getName();
            }
    
            /**
             * Gets the servlet context. This operation is not supported.
             *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/av/AvPair.java

         */
        public AvPair(final int type, final byte[] raw) {
            this.type = type;
            this.raw = raw;
        }
    
        /**
         * Gets the AV pair type
         * @return the type
         */
        public final int getType() {
            return this.type;
        }
    
        /**
         * Gets the raw data bytes
         * @return the raw
         */
        public final byte[] getRaw() {
            return this.raw;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  5. compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferResource.java

        String getName();
    
        /**
         * Gets the full URL of the artifact.
         *
         * @return The full URL of the artifact, never {@code null}.
         */
        String getUrl();
    
        /**
         * The size of the artifact in bytes.
         *
         * @return The of the artifact in bytes or a negative value if unknown.
         */
        long getContentLength();
    
        /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            dataSerializer = ComponentUtil.getComponent("dataSerializer");
        }
    
        /**
         * Gets the Fess configuration instance.
         *
         * @return the Fess configuration
         */
        @Override
        public FessConfig getFessConfig() {
            return fessConfig;
        }
    
        /**
         * Gets the logger instance for this transformer.
         *
         * @return the logger instance
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

         */
        @Resource
        protected WebAuthenticationBhv webAuthenticationBhv;
    
        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Gets a paginated list of web authentications based on the provided pager.
         *
         * @param webAuthenticationPager The pager containing pagination and search criteria
         * @return List of web authentication configurations
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

     *
     * <p>This interface is intended for internal use.</p>
     */
    public interface SmbPipeHandleInternal extends SmbPipeHandle {
    
        /**
         * Gets the type of this pipe.
         *
         * @return the pipe type
         */
        int getPipeType();
    
        /**
         * Gets the session key from the underlying SMB session.
         *
         * @return session key of the underlying smb session
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java

        /**
         * Splits this request for processing.
         *
         * @return the following message
         */
        CommonServerMessageBlockRequest split();
    
        /**
         * Gets the size of this message.
         *
         * @return the size of this message
         */
        int size();
    
        /**
         * Creates a cancel request for this request.
         *
         * @return create cancel request
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/witness/WitnessEventType.java

         */
        WitnessEventType(int value) {
            this.value = value;
        }
    
        /**
         * Gets the numeric event type value.
         *
         * @return the event type value
         */
        public int getValue() {
            return value;
        }
    
        /**
         * Gets a WitnessEventType from its numeric value.
         *
         * @param value the numeric value
         * @return the corresponding WitnessEventType
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 2.5K bytes
    - Viewed (0)
Back to top