Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 4091 - 4100 of 4,456 for override1 (0.35 seconds)

  1. android/guava/src/com/google/common/base/Stopwatch.java

      @GwtIncompatible
      @J2ObjCIncompatible
      public Duration elapsed() {
        return Duration.ofNanos(elapsedNanos());
      }
    
      /** Returns a string representation of the current elapsed time. */
      @Override
      public String toString() {
        long nanos = elapsedNanos();
    
        TimeUnit unit = chooseUnit(nanos);
        double value = (double) nanos / NANOSECONDS.convert(1, unit);
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Oct 08 18:55:33 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/graph/ImmutableNetwork.java

          staticImports = "com.google.common.base.Preconditions.checkNotNull")
      @Deprecated
      public static <N, E> ImmutableNetwork<N, E> copyOf(ImmutableNetwork<N, E> network) {
        return checkNotNull(network);
      }
    
      @Override
      public ImmutableGraph<N> asGraph() {
        return new ImmutableGraph<>(super.asGraph()); // safe because the view is effectively immutable
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  3. src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java

            private int currentIndex = 0;
    
            void addConnection(HttpURLConnection conn) {
                connections.add(conn);
            }
    
            @Override
            protected URLConnection openConnection(URL u) throws IOException {
                if (currentIndex < connections.size()) {
                    return connections.get(currentIndex++);
                }
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/entity/SearchRenderData.java

        /**
         * Gets the unique identifier for this search query session.
         *
         * @return The query identifier
         */
        public String getQueryId() {
            return queryId;
        }
    
        @Override
        public String toString() {
            return "SearchRenderData [documentItems=" + documentItems + ", facetResponse=" + facetResponse + ", appendHighlightParams="
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 12.5K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.TestInfo;
    
    public class PathMappingHelperTest extends UnitFessTestCase {
    
        public PathMappingHelper pathMappingHelper;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            pathMappingHelper = new PathMappingHelper();
            pathMappingHelper.init();
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  6. docs/changelogs/upgrading_to_okhttp_4.md

        .dns { hostname -> InetAddress.getAllByName(hostname).toList() }
        .build()
    ```
    
    Kotlin calling OkHttp 4.x:
    
    ```kotlin
    val client = OkHttpClient.Builder()
        .dns(object : Dns {
          override fun lookup(hostname: String) =
              InetAddress.getAllByName(hostname).toList()
        })
        .build()
    ```
    
    SAM conversion impacts these APIs:
    
     * Authenticator
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Feb 06 16:58:16 GMT 2022
    - 10.9K bytes
    - Click Count (0)
  7. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

             *
             * @param value The Date object to convert.
             * @return The ISO 8601 formatted date string, or null if value is not a Date.
             */
            @Override
            public String getAsString(final Object value) {
                if (value instanceof Date) {
                    return DEFAULT_DATE_PRINTER.print(((Date) value).getTime());
                }
                return null;
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Nov 20 08:40:57 GMT 2025
    - 34.3K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsRelatedContentCQ.java

        //                                                                       Name Override
        //                                                                       =============
        @Override
        public String asTableDbName() {
            return "related_content";
        }
    
        @Override
        public String xgetAliasName() {
            return "related_content";
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 63.8K bytes
    - Click Count (1)
  9. src/test/java/org/codelibs/fess/app/service/UserServiceTest.java

     * Tests user service business logic including store, delete, and password operations.
     */
    public class UserServiceTest extends UnitFessTestCase {
    
        private UserService userService;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            userService = new UserService();
        }
    
        @Test
        public void test_defaultConstructor() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jan 15 12:54:47 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/validation/CronExpressionTest.java

    import jakarta.validation.ValidatorFactory;
    import jakarta.validation.groups.Default;
    
    public class CronExpressionTest extends UnitFessTestCase {
    
        private Validator validator;
    
        @Override
        protected void setUp(TestInfo testInfo) throws Exception {
            super.setUp(testInfo);
            ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
            validator = factory.getValidator();
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 12.5K bytes
    - Click Count (0)
Back to Top