- Sort Score
- Num 10 results
- Language All
Results 541 - 550 of 3,128 for rint (0.02 seconds)
-
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeResponseTest.java
// First entry size: 4 (nextOffset) + 4 (action) + 4 (nameLength) + nameBytes int entry1Size = 12 + fileNameBytes1.length; int entry1AlignedSize = ((entry1Size + 3) / 4) * 4; // Align to 4 bytes int entry2Size = 12 + fileNameBytes2.length; int entry2AlignedSize = ((entry2Size + 3) / 4) * 4; // Align to 4 bytes // First notificationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/SortedLists.java
@Override <E extends @Nullable Object> int resultIndex( Comparator<? super E> comparator, @ParametricNullness E key, List<? extends E> list, int foundIndex) { // Of course, we have to use binary search to find the precise // breakpoint... int lower = foundIndex; int upper = list.size() - 1;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 10.9K bytes - Click Count (0) -
docs/fr/docs/advanced/advanced-python-types.md
Par exemple, vous pourriez déclarer que quelque chose peut être un `str` ou `None` : ```python from typing import Union def say_hi(name: Union[str, None]): print(f"Hi {name}!") ``` `typing` propose également un raccourci pour déclarer que quelque chose peut être `None`, avec `Optional`. Voici un conseil issu de mon point de vue très subjectif :
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Feb 14 08:12:41 GMT 2026 - 2.3K bytes - Click Count (0) -
guava/src/com/google/common/collect/Count.java
/** * A mutable value of type {@code int}, for multisets to use in tracking counts of values. * * @author Louis Wasserman */ @GwtCompatible final class Count implements Serializable { private int value; Count(int value) { this.value = value; } public int get() { return value; } public void add(int delta) { value += delta; }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 1.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ForwardingMultiset.java
* A sensible definition of {@link #setCount(Object, int, int)} in terms of {@link #count(Object)} * and {@link #setCount(Object, int)}. If you override either of these methods, you may wish to * override {@link #setCount(Object, int, int)} to forward to this implementation. * * @since 7.0 */ protected boolean standardSetCount(@ParametricNullness E element, int oldCount, int newCount) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Jul 08 18:32:10 GMT 2025 - 10.3K bytes - Click Count (0) -
guava-tests/benchmark/com/google/common/math/IntMathBenchmark.java
@NullUnmarked public class IntMathBenchmark { private static final int[] exponent = new int[ARRAY_SIZE]; private static final int[] factorial = new int[ARRAY_SIZE]; private static final int[] binomial = new int[ARRAY_SIZE]; private static final int[] positive = new int[ARRAY_SIZE]; private static final int[] nonnegative = new int[ARRAY_SIZE]; private static final int[] ints = new int[ARRAY_SIZE]; @BeforeExperiment void setUp() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
/** * Directory lease flag for recursive caching */ public static final int DIRECTORY_LEASE_FLAG_RECURSIVE = 0x00000001; /** * Directory lease flag for enabling notifications */ public static final int DIRECTORY_LEASE_FLAG_NOTIFICATIONS = 0x00000002; private Smb2LeaseKey leaseKey; private int leaseState; private DirectoryCacheScope cacheScope; private long maxCacheAge;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
return 0; } @Override int readParametersWireFormat(byte[] buffer, int bufferIndex, int len) { return 0; } @Override int readDataWireFormat(byte[] buffer, int bufferIndex, int len) { return 0; } // Helper methods to access private fields using reflectionCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 12K bytes - Click Count (0) -
android/guava/src/com/google/common/primitives/UnsignedBytes.java
@Override public int compare(byte[] left, byte[] right) { // If theUnsafe weren't available, we wouldn't have selected this Comparator implementation. Unsafe theUnsafe = requireNonNull(UnsafeComparator.theUnsafe); int stride = 8; int minLength = Math.min(left.length, right.length); int strideLimit = minLength & ~(stride - 1); int i; /*Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 23 16:38:16 GMT 2026 - 21K bytes - Click Count (0) -
build-tools-internal/src/main/resources/templates/release-highlights.asciidoc
<<breaking-changes>>. endif::[] <% if (priorVersions.size() > 0) { %> // Add previous release to the list Other versions: <% print priorVersions.join("\n| ") print "\n" } if (notableHighlights.empty == false) { %> // tag::notable-highlights[] <% for (highlight in notableHighlights) { %> [discrete] [[${ highlight.anchor }]] === ${highlight.title}
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 01 06:25:29 GMT 2021 - 848 bytes - Click Count (0)