Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1551 - 1560 of 1,673 for Docstring (0.05 sec)

  1. gradle/wrapper/gradle-wrapper.jar

    org/gradle/cli/CommandLineParser$OptionString.class package org.gradle.cli; public final class CommandLineParser$OptionString { public final String arg; public final String option; public void CommandLineParser$OptionString(String, String); public final String toString(); } org/gradle/cli/CommandLineParser$ParserState.class package org.gradle.cli; public abstract class CommandLineParser$ParserState { public void CommandLineParser$ParserState(); public abstract boolean maybeStartOption(String); public abstract ...
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 44.4K bytes
    - Viewed (1)
  2. guava-tests/test/com/google/common/primitives/BooleansTest.java

        assertThat(reference.hashCode()).isEqualTo(Booleans.asList(ARRAY_FALSE).hashCode());
      }
    
      public void testAsListToString() {
        assertThat(Booleans.asList(ARRAY_FALSE).toString()).isEqualTo("[false]");
        assertThat(Booleans.asList(ARRAY_FALSE_TRUE).toString()).isEqualTo("[false, true]");
      }
    
      public void testAsListSet() {
        List<Boolean> list = Booleans.asList(ARRAY_FALSE);
        assertThat(list.set(0, true)).isFalse();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

                ),
              )
          }
    
          result +=
            listOf(
              AttributeTypeAndValue(
                type = ObjectIdentifiers.COMMON_NAME,
                value = commonName ?: UUID.randomUUID().toString(),
              ),
            )
    
          return result
        }
    
        private fun validity(): Validity {
          val notBefore = if (notBefore != -1L) notBefore else System.currentTimeMillis()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

       */
      public static String toString(Iterator<?> iterator) {
        StringBuilder sb = new StringBuilder().append('[');
        boolean first = true;
        while (iterator.hasNext()) {
          if (!first) {
            sb.append(", ");
          }
          first = false;
          sb.append(iterator.next());
        }
        return sb.append(']').toString();
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

            Throwable current = t;
            while (current != null) {
                buf.append(current.getLocalizedMessage()).append(' ');
                current = current.getCause();
            }
            return buf.toString();
        }
    
        /**
         * Checks if a checkbox value represents an enabled state.
         * This method considers "on" and "true" (case-insensitive) as enabled values.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/Collections2Test.java

      }
    
      public void testToStringImplWithNullEntries() throws Exception {
        List<@Nullable String> list = new ArrayList<>();
        list.add("foo");
        list.add(null);
    
        assertEquals(list.toString(), Collections2.toStringImpl(list));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

            callback.onFailure(e);
            return;
          }
          callback.onSuccess(value);
        }
    
        @Override
        public String toString() {
          return MoreObjects.toStringHelper(this).addValue(callback).toString();
        }
      }
    
      /**
       * Returns the result of the input {@code Future}, which must have already completed.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

            qrList.setSearchQuery("test query");
            qrList.setExecTime(1000L);
    
            String toStringResult = qrList.toString();
            assertTrue(toStringResult.contains("QueryResponseList"));
            assertTrue(toStringResult.contains("start=0"));
            assertTrue(toStringResult.contains("pageSize=10"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 39.7K bytes
    - Viewed (0)
  9. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

            }
            longUrl.append("file.html");
    
            urlFilter.addInclude("https://example.com/.*");
    
            // Should handle long URLs without issues
            assertTrue(urlFilter.match(longUrl.toString()));
        }
    
        /**
         * Test internationalized domain names (IDN)
         */
        public void test_internationalizedDomainNames() {
            String sessionId = "test-session-021";
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/CookiesTest.kt

        val cookie = HttpCookie("c", "cookie")
        cookie.domain = redirectSourceUrl.host
        cookie.path = "/"
        val portList = redirectSource.port.toString()
        cookie.portlist = portList
        cookieManager.cookieStore.add(redirectSourceUrl.toUri(), cookie)
        client =
          client
            .newBuilder()
            .cookieJar(JavaNetCookieJar(cookieManager))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 13K bytes
    - Viewed (0)
Back to top