- Sort Score
- Num 10 results
- Language All
Results 171 - 180 of 4,197 for objeto (0.22 seconds)
-
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
}); } /** * Begins statistics tracking for the specified crawler object. * Creates a new statistics object in the cache and starts timing. * * @param keyObj the crawler object to track (UrlQueue, StatsKeyObject, String, or Number) */ public void begin(final Object keyObj) { getCacheKey(keyObj).ifPresent(key -> { try {Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 17.4K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ByFunctionOrdering.java
return ordering.compare(function.apply(left), function.apply(right)); } @Override public boolean equals(@Nullable Object object) { if (object == this) { return true; } if (object instanceof ByFunctionOrdering) { ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object; return this.function.equals(that.function) && this.ordering.equals(that.ordering); } return false; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 2.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
/** * Handler for the "s3" protocol, allowing access to objects stored in S3-compatible storage services. * This handler extends {@link URLStreamHandler} to provide a way to open connections to S3 objects * using URLs with the "s3" protocol. * * <p> * The URL format is expected to be: {@code s3://bucketName/objectName}. * The bucket name and object name are extracted from the URL. * </p> * * <p>
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Dec 11 07:57:44 GMT 2025 - 9.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/CacheUtils.java
*/ @Deprecated public static int hash(Object obj) { return obj != null ? obj.hashCode() : 0; } public static int pluginHashCode(Plugin plugin) { int hash = 17; hash = hash * 31 + Objects.hashCode(plugin.getGroupId()); hash = hash * 31 + Objects.hashCode(plugin.getArtifactId()); hash = hash * 31 + Objects.hashCode(plugin.getVersion());Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.5K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java
} /** * Adds an FtpAuthentication object to the holder. * @param auth The FtpAuthentication object to add. */ public void add(final FtpAuthentication auth) { if (auth != null) { authenticationList.add(auth); } } /** * Retrieves an FtpAuthentication object that matches the given path. * @param path The path to match.Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Jul 06 02:13:03 GMT 2025 - 1.9K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
/** * Handler for the "storage" protocol, allowing access to objects stored in a MinIO-compatible storage service. * This handler extends {@link URLStreamHandler} to provide a way to open connections to storage objects * using URLs with the "storage" protocol. * * <p> * The URL format is expected to be: {@code storage://bucketName/objectName}. * The bucket name and object name are extracted from the URL. * </p> * * <p>
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Thu Nov 20 08:52:56 GMT 2025 - 11.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/ByFunctionOrdering.java
return ordering.compare(function.apply(left), function.apply(right)); } @Override public boolean equals(@Nullable Object object) { if (object == this) { return true; } if (object instanceof ByFunctionOrdering) { ByFunctionOrdering<?, ?> that = (ByFunctionOrdering<?, ?>) object; return this.function.equals(that.function) && this.ordering.equals(that.ordering); } return false; }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 2.3K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluatorV4.java
return expression.replace("$$", "$"); } Map<String, Object> objects = new HashMap<>(); objects.put("session.", session); objects.put("project.", project); objects.put("mojo.", mojoExecution); objects.put("settings.", session.getSettings()); for (Map.Entry<String, Object> ctx : objects.entrySet()) { if (expression.startsWith(ctx.getKey())) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 24 17:29:44 GMT 2025 - 9.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/storage/StorageClient.java
/** * Downloads an object from storage. * * @param objectName the name/path of the object to download * @param outputStream the output stream to write data to */ void downloadObject(String objectName, OutputStream outputStream); /** * Deletes an object from storage. * * @param objectName the name/path of the object to delete */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ObjectCountHashMap.java
public boolean containsKey(@Nullable Object key) { return indexOf(key) != -1; } public int get(@Nullable Object key) { int index = indexOf(key); return (index == -1) ? 0 : values[index]; } @CanIgnoreReturnValue public int remove(@Nullable Object key) { return remove(key, smearedHash(key)); } private int remove(@Nullable Object key, int hash) {
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 14.5K bytes - Click Count (0)