- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 444 for affected (0.04 sec)
-
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
assertNotNull(serverData.guid); assertArrayEquals(guid, serverData.guid); assertEquals(16, serverData.guid.length); } /** * Test that modifying the original array affects the field (reference test) */ @Test @DisplayName("Test byte array reference behavior") public void testByteArrayReference() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
? delegate.keySet().toArray() : ObjectArrays.copyAsObjectArray(requireKeys(), 0, size); } @Override @SuppressWarnings("nullness") // b/192354773 in our checker affects toArray declarations public <T extends @Nullable Object> T[] toArray(T[] a) { if (needsAllocArrays()) { if (a.length > 0) { @Nullable Object[] unsoundlyCovariantArray = a;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
guava-gwt/pom.xml
the modules that the test module classes use, so we get errors. The good news is that, despite ignoring errors here, GWT does fail if any errors affect classes that are actually used in the module under test. One way to eliminate the warnings is to make base.testModule include the not really
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
ci/devinfra/docker/windows2022/Dockerfile
# without having to replace the drive letter with C:\ every time. # Such a workaround is not required on Linux, since it # can create arbitrary paths within the container, e.g., '/t'. # Note: This does not affect/work for `docker cp` commands. RUN New-Item -ItemType directory -Path C:\drive_t; \
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Jan 13 18:59:55 UTC 2025 - 10.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CollectCollectors.java
if (set == null) { return ImmutableSet.of(); } ImmutableSet<E> ret = ImmutableEnumSet.asImmutable(set); set = null; // subsequent manual manipulation of the accumulator mustn't affect ret return ret; } } @GwtIncompatible @SuppressWarnings({"rawtypes", "unchecked"}) static <E extends Comparable<? super E>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/CollectCollectors.java
if (set == null) { return ImmutableSet.of(); } ImmutableSet<E> ret = ImmutableEnumSet.asImmutable(set); set = null; // subsequent manual manipulation of the accumulator mustn't affect ret return ret; } } @GwtIncompatible @SuppressWarnings({"rawtypes", "unchecked"}) static <E extends Comparable<? super E>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 16.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
* unless the value is {@code null}. * * <p>Any existing entry spanning either range boundary may be split at the boundary, even if the * merge does not affect its value. For example, if {@code rangeMap} had one entry {@code [1, 5] * => 3} then {@code rangeMap.merge(Range.closed(0,2), 3, Math::max)} could yield a map with the * entries {@code [0, 1) => 3, [1, 2] => 3, (2, 5] => 3}.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescTest.java
assertEquals(0x3333, desc3.fid); assertEquals(DACL_SECURITY_INFORMATION, desc3.securityInformation); // Verify writing doesn't affect other instances byte[] dst1 = new byte[8]; byte[] dst2 = new byte[8]; byte[] dst3 = new byte[8]; desc1.writeParametersWireFormat(dst1, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
assertArrayEquals(testPassword, auth.getPasswordAsCharArray()); assertEquals(new String(testPassword), auth.getPassword()); // Verify that modifying original array doesn't affect stored password Arrays.fill(testPassword, 'Y'); assertEquals("CharArrayPass789!", auth.getPassword()); } /** * Test domain constructor with char array */ @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Project.java
* activation criteria through explicit activation or automatic conditions. * <p> * The combined set of active profiles from the entire project hierarchy affects * the effective build configuration. * * @return a non-null, possibly empty list of all active profiles from this project and its parents * @see Profile * @see #getDeclaredActiveProfiles()
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Feb 27 11:07:03 UTC 2025 - 10.6K bytes - Viewed (0)