Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,376 for getI (0.02 sec)

  1. src/main/java/jcifs/smb/PreauthIntegrityService.java

        }
    
        /**
         * Gets the list of supported hash algorithms.
         *
         * @return array of supported algorithms
         */
        public int[] getSupportedHashAlgorithms() {
            return new int[] { HASH_ALGO_SHA512 };
        }
    
        /**
         * Gets the selected hash algorithm.
         *
         * @return the hash algorithm
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/services/Transport.java

         * @throws RuntimeException If failed (and not due source not exists).
         */
        boolean get(@Nonnull URI relativeSource, @Nonnull Path target);
    
        /**
         * GETs the source URI content as byte array. The source MUST BE relative from the {@link RemoteRepository#getUrl()}
         * root.
         *
         * @return the byte array if operation succeeded, {@code null} if source does not exist.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Mar 23 05:29:39 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. android/guava-tests/benchmark/com/google/common/util/concurrent/StripedBenchmark.java

          Striped<Lock> get(int stripes) {
            return new Striped.SmallLazyStriped<>(stripes, LOCK_SUPPLIER);
          }
        },
        LAZY_LARGE {
          @Override
          Striped<Lock> get(int stripes) {
            return new Striped.LargeLazyStriped<>(stripes, LOCK_SUPPLIER);
          }
        };
    
        abstract Striped<Lock> get(int stripes);
      }
    
      private Striped<Lock> striped;
      private int[] stripes;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/SmbTransportPool.java

    /**
     * This is an internal API for managing pools of SMB connections
     *
     * @author mbechler
     *
     * <p>This interface is intended for internal use.</p>
     */
    public interface SmbTransportPool {
    
        /**
         * Gets an SMB transport connection to the specified server.
         *
         * @param tf the CIFS context to use
         * @param name the server name or address
         * @param port the port number
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final String pLC = pageCacheMap.get(pathLC);
            if (pLC != null) {
                return pLC;
            }
            if (existsPage(pathLC)) {
                pageCacheMap.put(pathLC, pathLC);
                return pathLC;
            }
    
            final String pathL = getLocalizedPagePath(page, lang, null);
            final String pL = pageCacheMap.get(pathL);
            if (pL != null) {
                return pL;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/SmbException.java

        }
    
        /**
         * Gets the SMB error code
         *
         * @return the error code
         */
        public int getErrorCode() {
            return errorCode;
        }
    
        /**
         * Gets the error severity
         *
         * @return the severity
         */
        public Severity getSeverity() {
            return severity;
        }
    
        /**
         * Gets the error category
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/Dfs.java

            final HashMap domains = getTrustedDomains(auth);
            if (domains == null) {
                return false;
            }
            domain = domain.toLowerCase();
            return domains.get(domain) != null;
        }
    
        /**
         * Gets a domain controller transport for the specified domain
         * @param domain the domain name
         * @param auth the authentication credentials
         * @return an SMB transport to the domain controller
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/cors/CorsHandlerFactory.java

        }
    
        /**
         * Gets the CORS handler for the specified origin.
         * If no specific handler is found, returns the wildcard handler.
         *
         * @param origin the origin to look up
         * @return the CORS handler for the origin, or null if none found
         */
        public CorsHandler get(final String origin) {
            final CorsHandler handler = handerMap.get(origin);
            if (handler != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/BufferCache.java

        /**
         * Gets a buffer from the cache or creates a new one if the cache is empty.
         *
         * Performance: O(1) operation using concurrent queue
         *
         * @return a byte buffer for SMB operations
         * @throws IllegalStateException if buffer size exceeds maximum allowed
         */
        static public byte[] getBuffer() {
            // Try to get from cache first - O(1) operation
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

         * @return the corresponding file type, or the default value if not found
         */
        public String get(final String mimetype) {
            final String filetype = mimetypeMap.get(mimetype);
            if (StringUtil.isBlank(filetype)) {
                return defaultValue;
            }
            return filetype;
        }
    
        /**
         * Gets the default file type value used when MIME type is not found.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
Back to top