- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 445 for unnecessary (0.09 sec)
-
guava/src/com/google/common/hash/ChecksumHashFunction.java
long value = checksum.getValue(); if (bits == 32) { /* * The long returned from a 32-bit Checksum will have all 0s for its second word, so the * cast won't lose any information and is necessary to return a HashCode of the correct * size. */ return HashCode.fromInt((int) value); } else { return HashCode.fromLong(value); } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSet.java
default: return new RegularImmutableSet<E>(delegate); } } private static <E> ImmutableSet<E> create(E... elements) { // Create the set first, to remove duplicates if necessary. Set<E> set = Sets.newLinkedHashSet(); Collections.addAll(set, elements); for (E element : set) { checkNotNull(element); } switch (set.size()) { case 0:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 8.3K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Supplier.java
* future version of {@code com.google.common.base.Supplier} will be made to <i>extend</i> {@code * java.util.function.Supplier}, making conversion code necessary only in one direction. At that * time, this interface will be officially discouraged. * * @author Harry Heymann * @since 2.0 */ @GwtCompatible public interface Supplier<T extends @Nullable Object> { /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jun 19 17:20:48 UTC 2025 - 3K bytes - Viewed (0) -
.github/workflows/build-docs.yml
pull-requests: read # Set job outputs to values from filter step outputs: docs: ${{ steps.filter.outputs.docs }} steps: - uses: actions/checkout@v5 # For pull requests it's not necessary to checkout the code but for the main branch it is - uses: dorny/paths-filter@v3 id: filter with: filters: | docs: - README.md - docs/**
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Aug 15 21:44:06 UTC 2025 - 4.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Toolchain.java
* This interface allows users to define and configure various toolchains * that can be utilized by Maven during the build process. Toolchains can * include compilers, interpreters, and other tools that are necessary * for building a project in a specific environment.</p> * * <p>Toolchains are defined in the Maven toolchains.xml file and can be * referenced in the project's POM file. This allows for greater flexibility
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 11 12:33:57 UTC 2025 - 3.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Request.java
* and request tracing capabilities. * * <p>Each request is associated with a {@link ProtoSession} that contains the configuration * and context necessary for request processing, including: * <ul> * <li>User and system properties for interpolation</li> * <li>Session start time information</li> * <li>Project directory structures</li> * </ul> *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
# Environment variables to prevent auto-conversion of Linux-like paths to Windows paths. # This is necessary as some paths end up invalid/mangled. ENV MSYS_NO_PATHCONV 1 ENV MSYS2_ARG_CONV_EXCL * # This should only be necessary if there are multiple, differently-versioned # MSVC compilers installed, and a particular one should be used. # To find exact versions available:
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
docs/en/docs/deployment/versions.md
After you have tests, then you can upgrade the **FastAPI** version to a more recent one, and make sure that all your code is working correctly by running your tests. If everything is working, or after you make the necessary changes, and all your tests are passing, then you can pin your `fastapi` to that new recent version. ## About Starlette { #about-starlette } You shouldn't pin the version of `starlette`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/SmbFileHandleTest.java
@Mock private SmbFileHandle smbFileHandle; @Mock private SmbTreeHandle smbTreeHandle; @BeforeEach void setUp() throws CIFSException { // Reset mock before each test if necessary, though MockitoExtension does this. } /** * Test that getTree() returns the correct SmbTreeHandle. */ @Test void testGetTree() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/IteratorTester.java
* return actualElements.iterator(); * } * }; * iteratorTester.test(); * iteratorTester.testForEachRemaining(); * } * * <p><b>Note</b>: It is necessary to use {@code IteratorTester.KnownOrder} as shown above, rather * than {@code KnownOrder} directly, because otherwise the code cannot be compiled. * * @author Kevin Bourrillion * @author Chris Povirk */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 4.3K bytes - Viewed (0)