- Sort Score
- Result 10 results
- Languages All
Results 3391 - 3400 of 3,662 for Void (0.02 sec)
-
src/main/java/jcifs/SmbPipeHandle.java
/** * {@inheritDoc} * * @throws CIFSException if an error occurs closing the handle * * @see java.lang.AutoCloseable#close() */ @Override void close() throws CIFSException; /** * Tests whether this file descriptor is open and valid. * * @return whether the FD is open and valid */ boolean isOpen(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
*/ private ComponentUtil() { } /** * Processes a runnable after container initialization. * @param process The process to run after container init. */ public static void processAfterContainerInit(final Runnable process) { if (available()) { process.run(); } else { initProcesses.add(process); } } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/WebConfigDbm.java
// ================= @Override public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { } @Override public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
static final Collector<Enum<?>, ?, ImmutableSet<? extends Enum<?>>> TO_IMMUTABLE_ENUM_SET = (Collector) toImmutableEnumSetGeneric(); private @Nullable EnumSet<E> set; void add(E e) { if (set == null) { set = EnumSet.of(e); } else { set.add(e); } } EnumSetAccumulator<E> combine(EnumSetAccumulator<E> other) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.9K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/DirectedGraphConnections.java
return null; } if (value instanceof PredAndSucc) { return (V) ((PredAndSucc) value).successorValue; } return (V) value; } @Override public void removePredecessor(N node) { checkNotNull(node); Object previousValue = adjacentNodeValues.get(node); boolean removedPredecessor; if (previousValue == PRED) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Jan 18 02:54:30 UTC 2025 - 17.8K bytes - Viewed (0) -
guava/src/com/google/common/collect/CollectCollectors.java
static final Collector<Enum<?>, ?, ImmutableSet<? extends Enum<?>>> TO_IMMUTABLE_ENUM_SET = (Collector) toImmutableEnumSetGeneric(); private @Nullable EnumSet<E> set; void add(E e) { if (set == null) { set = EnumSet.of(e); } else { set.add(e); } } EnumSetAccumulator<E> combine(EnumSetAccumulator<E> other) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.6K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/LongMathBenchmark.java
private static final long[] positive = new long[ARRAY_SIZE]; private static final long[] nonnegative = new long[ARRAY_SIZE]; private static final long[] longs = new long[ARRAY_SIZE]; @BeforeExperiment void setUp() { for (int i = 0; i < ARRAY_SIZE; i++) { exponents[i] = randomExponent(); positive[i] = randomPositiveBigInteger(Long.SIZE - 1).longValue();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakAcknowledgment.java
*/ public int getLeaseFlags() { return flags; } /** * Sets the lease flags for this acknowledgment * @param flags the lease flags to set */ public void setLeaseFlags(int flags) { this.flags = flags; } @Override protected Smb2LeaseBreakResponse createResponse(CIFSContext tc, ServerMessageBlock2Request<Smb2LeaseBreakResponse> req) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 4.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java
*/ package org.codelibs.fess.crawler.client.ftp; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class FtpAuthenticationTest extends PlainTestCase { public void test_matches() throws Exception { FtpAuthentication auth = new FtpAuthentication(); auth.setServer("hostname"); auth.setPort(21); auth.setUsername("testuser");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java
private static final class ExposedByteArrayOutputStream extends ByteArrayOutputStream { ExposedByteArrayOutputStream(int expectedInputSize) { super(expectedInputSize); } void write(ByteBuffer input) { int remaining = input.remaining(); if (count + remaining > buf.length) { buf = Arrays.copyOf(buf, count + remaining); } input.get(buf, count, remaining);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3.8K bytes - Viewed (0)