Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,742 for False (0.01 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/testers/MapContainsValueTester.java

      }
    
      public void testContains_no() {
        assertFalse("containsValue(notPresent) should return false", getMap().containsValue(v3()));
      }
    
      @MapFeature.Require(ALLOWS_NULL_VALUE_QUERIES)
      public void testContains_nullNotContainedButAllowed() {
        assertFalse("containsValue(null) should return false", getMap().containsValue(null));
      }
    
      @MapFeature.Require(absent = ALLOWS_NULL_VALUE_QUERIES)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Nov 14 23:40:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/Exchange.kt

      private val codec: ExchangeCodec,
    ) {
      /** True if the request body need not complete before the response body starts. */
      internal var isDuplex: Boolean = false
        private set
    
      /** True if there was an exception on the connection to the peer. */
      internal var hasFailure: Boolean = false
        private set
    
      internal val connection: RealConnection
        get() = codec.carrier as? RealConnection ?: error("no connection for CONNECT tunnels")
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Jul 29 22:04:11 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketWriterTest.kt

        WebSocketWriter(
          isClient = false,
          sink = data,
          random = random,
          perMessageDeflate = false,
          noContextTakeover = false,
          minimumDeflateSize = 0L,
        )
      private val clientWriter =
        WebSocketWriter(
          isClient = true,
          sink = data,
          random = random,
          perMessageDeflate = false,
          noContextTakeover = false,
          minimumDeflateSize = 0L,
        )
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/CommonServerMessageBlockResponseTest.java

                private boolean async = false;
                private CommonServerMessageBlockResponse next;
                private boolean received = false;
                private boolean error = false;
                private boolean verifyFailed = false;
                private Long expiration;
                private Exception exception;
                private long mid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  5. src/main/webapp/js/search.js

              $favorite.attr("href", "#" + docId);
              // alert(JSON.stringify(data));
            });
        }
        $(this).attr("href", "#");
        return false;
      });
    
      if ($favorites.length > 0) {
        $.ajax({
          dataType: "json",
          cache: false,
          type: "get",
          timeoutNumber: 10000,
          url: contextPath + "/api/v1/favorites",
          data: {
            queryId: $queryId.val()
          }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SmbTransportPoolImplTest.java

            nonPooledConnections.remove(nonPooled);
            nonPooledConnections.offer(nonPooledSpy);
    
            // Mock disconnect behavior
            when(pooledSpy.disconnect(false, false)).thenReturn(true); // In use
            when(nonPooledSpy.disconnect(false, false)).thenReturn(false); // Not in use
    
            // When: Close the pool
            boolean inUse = pool.close();
    
            // Then: Should report in-use and call disconnect on all
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SmbFileTest.java

                // Arrange
                doReturn(true).when(smbFile).exists();
                // Mock that it's a file (no directory attribute)
                doReturn(false).when(smbFile).isDirectory();
                when(mockTreeHandle.isSMB2()).thenReturn(false);
                when(mockTreeHandle.send(any(SmbComDelete.class), any(SmbComBlankResponse.class))).thenReturn(mock(SmbComBlankResponse.class));
    
                // Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEquals("\\Qhttps://example.com\\E.*", parser.parseFilterPaths("https://example.com", true, false));
            assertEquals("\\Qfile://test\\E.*", parser.parseFilterPaths("file://test", true, false));
            assertEquals("\\Qtest\\E", parser.parseFilterPaths("test", true, false));
            assertEquals("", parser.parseFilterPaths("# comment\n\n  ", true, false));
        }
    
        public void test_parseFilterPaths_file() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/GroupDbm.java

                false, "Long", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnName = cci("name", "name", null, null, String.class, "name", null, false, false, false, "keyword", 0,
                0, null, null, false, null, null, null, null, null, false);
    
        public ColumnInfo columnGidNumber() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java

                    props.setProperty(FessEnv.DEVELOPMENT_HERE, "false");
                    props.setProperty(FessEnv.ENVIRONMENT_TITLE, "Production");
                    props.setProperty(FessEnv.FRAMEWORK_DEBUG, "true");
                    props.setProperty(FessEnv.TIME_ADJUST_TIME_MILLIS, "86400000");
                    props.setProperty(FessEnv.MAIL_SEND_MOCK, "false");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.5K bytes
    - Viewed (0)
Back to top