- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 136 for charlie (0.14 sec)
-
guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java
import org.jspecify.annotations.NullUnmarked; import org.jspecify.annotations.Nullable; /** * LocalCache emulation for GWT. * * @param <K> the base key type * @param <V> the base value type * @author Charles Fry * @author Jon Donovan */ @NullUnmarked @SuppressWarnings("nullness") // TODO: b/384945891 - Remove after fixing checker. public class LocalCache<K, V> implements ConcurrentMap<K, V> {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2ReadResponseTest.java
// Protocol ID System.arraycopy(new byte[] { (byte) 0xFE, 'S', 'M', 'B' }, 0, buffer, headerStart, 4); // Structure size (64) SMBUtil.writeInt2(64, buffer, headerStart + 4); // Credit charge SMBUtil.writeInt2(1, buffer, headerStart + 6); // Status SMBUtil.writeInt4(0, buffer, headerStart + 8); // Command (READ = 0x0008)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.1K bytes - Viewed (0) -
docs/es/docs/help-fastapi.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:49:48 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
* * @param credit * the credit to set */ public final void setCredit(final int credit) { this.credit = credit; } /** * Gets the credit charge for this message. * * @return the creditCharge */ public final int getCreditCharge() { return this.creditCharge; } @Override public void retainPayload() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
docs/en/docs/virtual-environments.md
## Where are Packages Installed { #where-are-packages-installed } When you install Python, it creates some directories with some files in your computer. Some of these directories are the ones in charge of having all the packages you install. When you run: <div class="termy"> ```console // Don't run this now, it's just an example 🤓 $ pip install "fastapi[standard]" ---> 100% ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 22.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java
import java.lang.ref.Reference; import java.util.concurrent.atomic.AtomicReferenceArray; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * @author Charles Fry */ @SuppressWarnings("deprecation") // many tests of deprecated methods @NullUnmarked public class MapMakerInternalMapTest extends TestCase { static final int SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 35.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MapMakerInternalMapTest.java
import java.lang.ref.Reference; import java.util.concurrent.atomic.AtomicReferenceArray; import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * @author Charles Fry */ @SuppressWarnings("deprecation") // many tests of deprecated methods @NullUnmarked public class MapMakerInternalMapTest extends TestCase { static final int SMALL_MAX_SIZE = DRAIN_THRESHOLD * 5;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 35.1K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
* normally {@code Object} unless it is constrained by using a method like {@link * #removalListener}. Cache values may not be null. * @author Charles Fry * @author Kevin Bourrillion * @since 10.0 */ @GwtCompatible public final class CacheBuilder<K, V> { private static final int DEFAULT_INITIAL_CAPACITY = 16;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 51.7K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
## Running on Startup and Restarts { #running-on-startup-and-restarts } There is normally another tool in charge of **starting and running** your container. It could be **Docker** directly, **Docker Compose**, **Kubernetes**, a **cloud service**, etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
assertEquals(0, testMessage.getCredit()); testMessage.setCredit(100); assertEquals(100, testMessage.getCredit()); } @Test @DisplayName("Should get credit charge") void testCreditChargeProperty() { assertEquals(0, testMessage.getCreditCharge()); } @Test @DisplayName("Should get and set read size")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0)