- Sort Score
- Result 10 results
- Languages All
Results 791 - 800 of 2,178 for projectId (0.1 sec)
-
android/guava/src/com/google/common/hash/AbstractStreamingHasher.java
protected abstract void process(ByteBuffer bb); /** * This is invoked for the last bytes of the input, which are not enough to fill a whole chunk. * The passed {@code ByteBuffer} is guaranteed to be non-empty. * * <p>This implementation simply pads with zeros and delegates to {@link #process(ByteBuffer)}. */ protected void processRemaining(ByteBuffer bb) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jun 15 20:59:00 UTC 2022 - 7.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
socket = null; tconHostName = null; } } protected void makeKey( Request request ) throws IOException { /* The request *is* the key */ if (++mid == 32000) mid = 1; ((ServerMessageBlock)request).mid = mid; } protected Request peekKey() throws IOException { int n; do { if ((n = readn( in, sbuf, 0, 4 )) < 4)
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ForwardingSortedSetTest.java
private final SortedSet<T> backingSortedSet; StandardImplForwardingSortedSet(SortedSet<T> backingSortedSet) { this.backingSortedSet = backingSortedSet; } @Override protected SortedSet<T> delegate() { return backingSortedSet; } @Override public boolean equals(@Nullable Object object) { return standardEquals(object); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/AbstractConfigHelper.java
import org.codelibs.core.concurrent.CommonPoolUtil; import org.codelibs.core.lang.ThreadUtil; public abstract class AbstractConfigHelper { protected long reloadInterval = 1000L; public void update() { CommonPoolUtil.execute(this::load); } protected void waitForNext() { if (reloadInterval > 0) { ThreadUtil.sleep(reloadInterval); } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/PathMappingService.java
import org.dbflute.optional.OptionalEntity; import jakarta.annotation.Resource; public class PathMappingService extends FessAppService { @Resource protected PathMappingBhv pathMappingBhv; @Resource protected FessConfig fessConfig; public List<PathMapping> getPathMappingList(final PathMapPager pathMappingPager) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.7K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Converter.java
* be overridden. * </ul> * * <h3>Example</h3> * * <pre> * return new Converter<Integer, String>() { * protected String doForward(Integer i) { * return Integer.toHexString(i); * } * * protected Integer doBackward(String s) { * return parseUnsignedInt(s, 16); * } * };</pre> * * <p>An alternative using Java 8: * * <pre>{@code
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 15 16:12:13 UTC 2024 - 23K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SchedulerPager.java
crawler = null; jobLogging = null; available = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; } protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } public int getAllRecordCount() { return allRecordCount; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ForwardingBlockingQueue.java
@ElementTypesAreNonnullByDefault public abstract class ForwardingBlockingQueue<E> extends ForwardingQueue<E> implements BlockingQueue<E> { /** Constructor for use by subclasses. */ protected ForwardingBlockingQueue() {} @Override protected abstract BlockingQueue<E> delegate(); @CanIgnoreReturnValue @Override public int drainTo(Collection<? super E> c, int maxElements) { return delegate().drainTo(c, maxElements);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2CancelRequest.java
} /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */ @Override protected int writeBytesWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; SMBUtil.writeInt2(4, dst, dstIndex); dstIndex += 4; return dstIndex - start; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
tensorflow/c/eager/abstract_context.h
// (for now at least). // Implementations of the context may contain some state e.g. an execution // environment, a traced representation etc. class AbstractContext { protected: enum AbstractContextKind { kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler }; explicit AbstractContext(AbstractContextKind kind) : kind_(kind) {} virtual ~AbstractContext() {} public:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Sat Oct 12 05:11:17 UTC 2024 - 3K bytes - Viewed (0)