Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for remained (0.05 sec)

  1. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

            auth.handle(new Callback[] { nc, pc });
    
            // With empty strings for username and domain, results in "@"
            assertEquals("@", nc.getName());
            // Password is null, so callback is not set (remains null)
            assertNull(pc.getPassword());
        }
    
        @Test
        @DisplayName("handle: null password leaves PasswordCallback unset")
        void testHandleWithNullPasswordDoesNotSet() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/Quantiles.java

          if (containsNaN(dataset)) {
            return NaN;
          }
    
          // Calculate the quotient and remainder in the integer division x = k * (N-1) / q, i.e.
          // index * (dataset.length - 1) / scale. If there is no remainder, we can just find the value
          // whose index in the sorted dataset equals the quotient; if there is a remainder, we
          // interpolate between that and the next value.
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 30.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java

        assertThat(UnsignedLongs.remainder(14, 5)).isEqualTo(4);
        assertThat(UnsignedLongs.remainder(0, 50)).isEqualTo(0);
        assertThat(UnsignedLongs.remainder(0xfffffffffffffffeL, 0xfffffffffffffffdL)).isEqualTo(1);
        assertThat(UnsignedLongs.remainder(0xfffffffffffffffdL, 0xfffffffffffffffeL))
            .isEqualTo(0xfffffffffffffffdL);
        assertThat(UnsignedLongs.remainder(0xfffffffffffffffeL, 65535)).isEqualTo(65534L);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java

            SmbComTransactionResponse r2 = (SmbComTransactionResponse) d.nextElement();
            assertSame(d, r2, "Subsequent calls still return same instance");
            assertFalse(d.getIsPrimary(), "isPrimary remains false after subsequent call");
        }
    
        @Test
        public void toString_doesNotThrow() {
            DummyResponse d = new DummyResponse();
            String s = d.toString();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  5. src/test/java/jcifs/context/CIFSContextCredentialWrapperTest.java

            assertFalse(renewed, "renewCredentials should return false when renewable credentials are not renewed");
            assertEquals(mockRenewableCredentials, wrapper.getCredentials(), "Credentials should remain unchanged if renew() returns null");
            verify(mockRenewableCredentials).renew();
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

            }
        }
    
        @Nested
        @DisplayName("Payload Handling Tests")
        class PayloadHandlingTests {
    
            @Test
            @DisplayName("Should handle response with retained payload")
            void testHaveResponseWithRetainedPayload() throws SMBProtocolDecodingException {
                byte[] buffer = { 1, 2, 3, 4, 5 };
                response.setRetainPayload(true);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/Striped.java

       * ReadWriteLock implementation whose read and write locks retain a reference back to this lock.
       * Otherwise, a reference to just the read lock or just the write lock would not suffice to ensure
       * the {@code ReadWriteLock} is retained.
       */
      private static final class WeakSafeReadWriteLock implements ReadWriteLock {
        private final ReadWriteLock delegate;
    
        WeakSafeReadWriteLock() {
          this.delegate = new ReentrantReadWriteLock();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

       * key. When a key-value pair is added to a multimap that didn't previously
       * contain any values for that key, a new collection generated by
       * createCollection is added to the map. That same collection instance
       * remains in the map as long as the multimap has any values for the key. If
       * all values for the key are removed, the key and collection are removed
       * from the map.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/entity/QueryContextTest.java

            assertEquals("test query", queryContext.getQueryString());
            assertEquals("url", queryContext.getDefaultField());
        }
    
        // Test constructor with allinurl prefix and empty remainder
        public void test_constructor_allinurlPrefixEmptyRemainder() {
            queryContext = new QueryContext("allinurl:", false);
            assertEquals("*", queryContext.getQueryString());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/SplitterTest.java

        String jacksons = "arfo(Marlon)aorf, (Michael)orfa, afro(Jackie)orfa, ofar(Jemaine), aff(Tito)";
        Iterable<String> family =
            COMMA_SPLITTER
                .trimResults(CharMatcher.anyOf("afro").or(CharMatcher.whitespace()))
                .split(jacksons);
        assertThat(family)
            .containsExactly("(Marlon)", "(Michael)", "(Jackie)", "(Jemaine)", "(Tito)")
            .inOrder();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
Back to top