- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 2,376 for getY (2.48 sec)
-
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); return crawlingConfigHelper.get(responseData.getSessionId()); } /** * Gets the XPath expression for extracting language information. * * @param fessConfig the Fess configuration * @param xpathConfigMap the XPath configuration map
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0)