- Sort Score
- Result 10 results
- Languages All
Results 131 - 140 of 230 for dropped (0.05 sec)
-
src/main/java/jcifs/dcerpc/DcerpcPipeHandle.java
* This class provides DCE/RPC communication over SMB named pipes. */ public class DcerpcPipeHandle extends DcerpcHandle { /* This 0x20000 bit is going to get chopped! */ final static int pipeFlags = 0x2019F << 16 | SmbPipeResource.PIPE_TYPE_RDWR | SmbPipeResource.PIPE_TYPE_DCE_TRANSACT; private final SmbNamedPipe pipe; private final SmbPipeHandleInternal handle; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/StringUtil.java
/* * © 2017 Matthias Bläsing <mblaesing@doppel-helix.eu> * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
docs/bucket/versioning/DESIGN.md
| xlMetaV2 | msgp object | All versions as single messagepack object | [EOF] | | ### v1.1+ Version 1.1 added inline data, which will be placed after the metadata. Therefore, the metadata is wrapped as a binary array for easy skipping. | Entry | Encoding | Content | ---------------|----------------|---------------------------------------- | xlHeader | [4]byte | `'X', 'L', '2', ' '`
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Jul 17 15:43:14 UTC 2022 - 5.8K bytes - Viewed (0) -
android/guava/src/com/google/common/base/SmallCharMatcher.java
return false; } else if (table[index] == c) { // Check for match. return true; } else { // Linear probing. index = (index + 1) & mask; } // Check to see if we wrapped around the whole table. } while (index != startingIndex); return false; } @Override void setBits(BitSet table) { if (containsZero) { table.set(0); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 4.5K bytes - Viewed (0) -
cmd/erasure-server-pool-rebalance.go
switch { case errors.Is(rebalErr, context.Canceled): status = rebalStopped traceMsg = fmt.Sprintf("stopped at %s", now) case rebalErr == nil: status = rebalCompleted traceMsg = fmt.Sprintf("completed at %s", now) default: status = rebalFailed traceMsg = fmt.Sprintf("stopped at %s with err: %v", now, rebalErr) } z.rebalMu.Lock()
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Sep 04 20:47:24 UTC 2025 - 28.9K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ParametricNullness.java
* identically to {@code Nullable}</a> as of version 0.9.9. * <li><a href="https://developers.google.com/j2objc">J2ObjC</a>, maybe: It might no longer be * necessary there, since we have stopped using the {@code @ParametersAreNonnullByDefault} * annotations that {@code ParametricNullness} was counteracting. * </ul> * * <p>This annotation is a temporary hack. We will remove it after <a
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 16:20:21 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* divided into segments, each of which does LRU internally) * <li>time-based expiration of entries, measured since last access or last write * <li>keys automatically wrapped in {@code WeakReference} * <li>values automatically wrapped in {@code WeakReference} or {@code SoftReference} * <li>notification of evicted (or otherwise removed) entries * <li>accumulation of cache access statistics * </ul> *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmAuthenticator.java
*/ protected final SmbAuthException getRequestingException() { return sae; } /** * Used internally by jCIFS when an <code>SmbAuthException</code> is trapped to retrieve new user credentials. * @param url the URL that requires authentication * @param sae the authentication exception that was thrown * @return credentials returned by prompt or null if none available
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacTest.java
writeLittleEndianLong(baos, 1000); // offset way out of bounds byte[] pacData = baos.toByteArray(); // This currently throws ArrayIndexOutOfBoundsException // but should be wrapped in PACDecodingException assertThrows(Exception.class, () -> new Pac(pacData, keys)); } @Test void testZeroBufferCount() throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SpnegoContext.java
* Instance a <code>SpnegoContext</code> object by wrapping a {@link SSPContext} * with the same mechanism this {@link SSPContext} used. * * @param source * the {@link SSPContext} to be wrapped */ SpnegoContext(final Configuration config, final SSPContext source) { this(config, source, source.getSupportedMechs()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 14.5K bytes - Viewed (0)