- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 481 for proxies (0.03 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/group/ApiAdminGroupAction.java
import org.lastaflute.web.Execute; import org.lastaflute.web.response.JsonResponse; import jakarta.annotation.Resource; /** * API action for admin group management. * Provides RESTful API endpoints for managing user group settings in the Fess search engine. * Groups define user permissions and access controls for search and administrative functions. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java
import org.opensearch.search.aggregations.bucket.terms.Terms.Bucket; import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder; /** * Helper class for managing crawling information and statistics. * Provides functionality to track crawling sessions, manage document expiration, * and handle crawling information storage and retrieval. */ public class CrawlingInfoHelper { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 15.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
import org.codelibs.fess.mylasta.direction.FessConfig; import org.codelibs.fess.util.ComponentUtil; /** * Interface for transforming and processing crawled documents in Fess. * Provides utility methods for URL processing, site extraction, data mapping, * and field configuration handling during the document transformation process. */ public interface FessTransformer { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /** * Character mapping file handler for managing character mapping dictionaries. * This class provides functionality to load, parse, and manage character mapping * rules that define how input characters should be transformed to output characters * during text analysis and search processing. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/Comparators.java
import java.util.Comparator; import java.util.Iterator; import java.util.List; import java.util.Optional; import java.util.stream.Collector; import org.jspecify.annotations.Nullable; /** * Provides static methods for working with {@link Comparator} instances. For many other helpful * comparator utilities, see either {@code Comparator} itself (for Java 8+), or {@code * com.google.common.collect.Ordering} (otherwise). *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/LittleEndianByteArray.java
theUnsafe.putLong(array, (long) offset + BYTE_ARRAY_BASE_OFFSET, littleEndianValue); } }; @Override public boolean usesFastPath() { return true; } // Provides load and store operations that use native instructions to get better performance. private static final Unsafe theUnsafe; // The offset to the first element in a byte array.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
/** * Unified exception class for SMB operations providing enhanced error handling, * retry policies, and contextual information. * * This exception consolidates the various SMB exception types and provides: * - Standardized error codes * - Automatic retry policies * - Rich contextual information * - Error categorization * - Performance metrics */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
// This requires Mockito 3.4.0+ for MockedStatic // For simplicity, we'll assume Crypto.getMD5() is static and mock it. // If it's not static, we'd need to inject it or mock the class that provides it. try (MockedStatic<Crypto> mockedCrypto = mockStatic(Crypto.class)) { mockedCrypto.when(Crypto::getMD5).thenReturn(mockMd5); } } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
* provided futures fails or is canceled, this one is, too. * * @param futures futures to combine * @return a future that provides a list of the results of the component futures * @since 10.0 */ @SafeVarargs public static <V extends @Nullable Object> ListenableFuture<List<V>> allAsList( ListenableFuture<? extends V>... futures) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
import org.lastaflute.web.util.LaRequestUtil; import jakarta.servlet.http.HttpServletRequest; /** * Utility class for document data manipulation and type conversion. * This class provides static methods for extracting typed values from document maps, * URL encoding, and other document-related operations. It's designed as a final * utility class with only static methods. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0)