Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,990 for gets (0.02 sec)

  1. src/main/java/org/codelibs/fess/validation/CustomSize.java

         * @return the payload
         */
        Class<? extends Payload>[] payload() default {};
    
        /**
         * Gets the configuration key for the minimum size constraint.
         * @return name of size the element must be higher or equal to
         */
        String minKey() default StringUtil.EMPTY;
    
        /**
         * Gets the configuration key for the maximum size constraint.
         *
         * @return name of size the element must be lower or equal to
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryFSInformationResponse.java

            this.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION);
        }
    
        /**
         * Gets the information level that was queried.
         *
         * @return the informationLevel
         */
        public int getInformationLevel() {
            return this.informationLevel;
        }
    
        /**
         * Gets the file system information from the response.
         *
         * @return the filesystem info
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. cmd/data-usage_test.go

    		},
    		{
    			// Gets compacted...
    			path:   "bucket/dir1",
    			size:   1302010,
    			objs:   5,
    			oSizes: sizeHistogram{0: 1, 1: 1, 2: 2, 4: 1},
    		},
    		{
    			// Gets compacted at this level...
    			path:   "bucket/dirwithalot/0",
    			size:   filesBelowT,
    			objs:   filesBelowT,
    			oSizes: sizeHistogram{0: filesBelowT},
    		},
    		{
    			// Gets compacted at this level (below obj threshold)...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessRpcMessage.java

        }
    
        @Override
        public int getOpnum() {
            return opnum;
        }
    
        /**
         * Gets the return code from the RPC operation.
         *
         * @return the return code
         */
        public int getReturnCode() {
            return returnCode;
        }
    
        /**
         * Sets the return code for the RPC operation.
         *
         * @param returnCode the return code to set
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java

            if (auth != null) {
                return;
            }
            auth = a;
        }
    
        /**
         * Gets the URL that is requesting authentication.
         * @return the URL requiring authentication
         */
        protected final String getRequestingURL() {
            return url;
        }
    
        /**
         * Gets the authentication exception that triggered this request.
         * @return the authentication exception
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtlmContext.java

         */
        public boolean isEstablished() {
            return isEstablished;
        }
    
        /**
         * Gets the server's NTLM challenge bytes.
         * @return the server challenge bytes
         */
        public byte[] getServerChallenge() {
            return serverChallenge;
        }
    
        /**
         * Gets the signing key for message authentication.
         * @return the signing key bytes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/nego/CompressionNegotiateContext.java

            return NEGO_CTX_COMPRESSION_TYPE;
        }
    
        /**
         * Gets the supported compression algorithms.
         *
         * @return the supported compression algorithms
         */
        public int[] getCompressionAlgorithms() {
            return this.compressionAlgorithms != null ? this.compressionAlgorithms.clone() : new int[0];
        }
    
        /**
         * Gets the compression flags.
         *
         * @return the compression flags
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/FessCredential.java

    package org.codelibs.fess.app.web.base.login;
    
    /**
     * Interface for Fess credential management.
     * Provides access to user identification information.
     */
    public interface FessCredential {
    
        /**
         * Gets the user ID for this credential.
         * @return The user ID.
         */
        String getUserId();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 927 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/BaseApiManager.java

         */
        public BaseApiManager() {
            // Default constructor
        }
    
        /**
         * Gets the path prefix for API endpoints.
         * @return The path prefix.
         */
        public String getPathPrefix() {
            return pathPrefix;
        }
    
        /**
         * Sets the path prefix for API endpoints.
         * @param pathPrefix The path prefix to set.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

     *
     * @since 4.0.0
     * @see LocalRepository
     * @see RemoteRepository
     * @see Artifact
     */
    @Experimental
    public interface LocalRepositoryManager extends Service {
    
        /**
         * Gets the relative path for a locally installed artifact.
         * Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where
         * the artifact would eventually be stored.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Feb 07 00:45:02 UTC 2025
    - 3.6K bytes
    - Viewed (0)
Back to top