- Sort Score
- Result 10 results
- Languages All
Results 3071 - 3080 of 3,687 for PRIVATE (0.35 sec)
-
guava/src/com/google/common/hash/HashingOutputStream.java
/** * An {@link OutputStream} that maintains a hash of the data written to it. * * @author Zoe Piepmeier * @since 16.0 */ @Beta public final class HashingOutputStream extends FilterOutputStream { private final Hasher hasher; /** * Creates an output stream that hashes using the given {@link HashFunction}, and forwards all * data written to it to the underlying {@link OutputStream}. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java
* It also provides a protected constructor that allows to specify whether or not suppression is enabled or stack trace is writable. */ public class CrawlerSystemException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new {@code CrawlerSystemException} with the specified detail message and cause. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java
* This class processes Lucene TermRangeQuery objects and converts them to OpenSearch QueryBuilder instances. */ public class TermRangeQueryCommand extends QueryCommand { private static final Logger logger = LogManager.getLogger(TermRangeQueryCommand.class); /** * Default constructor for TermRangeQueryCommand. */ public TermRangeQueryCommand() { super(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
/** * Helper class for Open Search Description Document. */ public class OsddHelper { /** * Default constructor. */ public OsddHelper() { // Default constructor } private static final Logger logger = LogManager.getLogger(OsddHelper.class); /** The OSDD file path. */ protected String osddPath; /** The encoding for OSDD file. */ protected String encoding = Constants.UTF_8;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/FileTypeHelperTest.java
*/ package org.codelibs.fess.helper; import java.util.Arrays; import org.codelibs.fess.unit.UnitFessTestCase; public class FileTypeHelperTest extends UnitFessTestCase { private FileTypeHelper fileTypeHelper; @Override public void setUp() throws Exception { super.setUp(); fileTypeHelper = new FileTypeHelper(); } public void test_init() { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 5.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/ConcurrentMapPutIfAbsentTester.java
} expectUnchanged(); expectNullValueMissingWhenNullValuesUnsupported( "Should not contain null after unsupported putIfAbsent(present, null)"); } @CanIgnoreReturnValue private V putIfAbsent(Entry<K, V> entry) { return getMap().putIfAbsent(entry.getKey(), entry.getValue()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/MathBenchmarking.java
static int randomExponent() { return RANDOM_SOURCE.nextInt(MAX_EXPONENT + 1); } static double randomPositiveDouble() { return Math.exp(randomDouble(6)); } private MathBenchmarking() {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 4.2K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/ClusterException.java
* * @author Luiz-Otavio Zorzella */ @GwtCompatible @NullMarked final class ClusterException extends RuntimeException { final Collection<? extends Throwable> exceptions; private ClusterException(Collection<? extends Throwable> exceptions) { super( exceptions.size() + " exceptions were thrown. The first exception is listed as a cause.", exceptions.iterator().next());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* flags, and other values used in SMB2/SMB3 communication. * * @author mbechler */ public final class Smb2Constants { /** * */ private Smb2Constants() { } /** * SMB2 header length in bytes */ public static final int SMB2_HEADER_LENGTH = 64; /** * SMB2 negotiate flag indicating signing is enabled */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
* the thread waits until the delay has elapsed. * This class is thread-safe. */ public class HostIntervalController extends DefaultIntervalController { /** Map storing the last access time for each host. */ private final ConcurrentMap<String, AtomicLong> lastTimes = new ConcurrentHashMap<>(); /** * Constructs a new HostIntervalController with default parameters. */ public HostIntervalController() { }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.2K bytes - Viewed (0)