Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 655 for forget (0.03 sec)

  1. samples/guide/src/main/java/okhttp3/recipes/LoggingInterceptors.java

          long t1 = System.nanoTime();
          Request request = chain.request();
          logger.info(String.format("Sending request %s on %s%n%s",
              request.url(), chain.connection(), request.headers()));
          Response response = chain.proceed(request);
    
          long t2 = System.nanoTime();
          logger.info(String.format("Received response for %s in %.1fms%n%s",
              request.url(), (t2 - t1) / 1e6d, response.headers()));
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Jan 01 15:55:32 UTC 2016
    - 2K bytes
    - Viewed (0)
  2. docs/assets/css/app.css

        font-family: cash-market;
        src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Regular.woff2") format("woff2");
        font-weight: 400;
        font-style: normal
    }
    
    @font-face {
        font-family: cash-market;
        src: url("https://cash-f.squarecdn.com/static/fonts/cash-market/v2/CashMarket-Medium.woff2") format("woff2");
        font-weight: 500;
        font-style: normal
    }
    
    @font-face {
        font-family: cash-market;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Feb 08 07:57:03 UTC 2022
    - 1.1K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/core/exception/InvocationTargetRuntimeException.java

        private static final long serialVersionUID = 7760491787158046906L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * Creates a {@link InvocationTargetRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param cause
         *            The cause of the exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserTimeZoneProcessProviderTest.java

            // Verify the string format
            assertNotNull(result);
            assertTrue(result.contains("FessUserTimeZoneProcessProvider"));
            assertTrue(result.contains("useTimeZoneHandling=false"));
            assertTrue(result.contains("acceptCookieTimeZone=false"));
            assertTrue(result.contains("@"));
    
            // Verify that hashCode is included in hex format
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/graph/EndpointPairTest.java

        EndpointPair<String> ordered = EndpointPair.ordered("source", "target");
        assertThat(ordered.isOrdered()).isTrue();
        assertThat(ordered).containsExactly("source", "target").inOrder();
        assertThat(ordered.source()).isEqualTo("source");
        assertThat(ordered.target()).isEqualTo("target");
        assertThat(ordered.nodeU()).isEqualTo("source");
        assertThat(ordered.nodeV()).isEqualTo("target");
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/exception/InstantiationRuntimeException.java

        private static final long serialVersionUID = 5220902071756706607L;
    
        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * Creates a {@link InstantiationRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param cause
         *            The cause of the exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/log/exentity/FavoriteLog.java

     */
    package org.codelibs.fess.opensearch.log.exentity;
    
    import java.time.LocalDateTime;
    import java.time.ZoneId;
    import java.time.ZonedDateTime;
    import java.time.format.DateTimeFormatter;
    import java.util.Map;
    
    import org.codelibs.fess.entity.SearchLogEvent;
    import org.codelibs.fess.opensearch.log.bsentity.BsFavoriteLog;
    
    /**
     * @author FreeGen
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/exception/FieldNotStaticRuntimeException.java

        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the field.
         */
        private final String fieldName;
    
        /**
         * Creates a {@link FieldNotStaticRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param fieldName
         *            Field name
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/exception/MethodNotStaticRuntimeException.java

        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the method.
         */
        private final String methodName;
    
        /**
         * Creates a {@link MethodNotStaticRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param methodName
         *            Method name
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/exception/NoSuchFieldRuntimeException.java

        /**
         * The target class.
         */
        private final Class<?> targetClass;
    
        /**
         * The name of the field.
         */
        private final String fieldName;
    
        /**
         * Creates a {@link NoSuchFieldRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param fieldName
         *            Field name
         * @param cause
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
Back to top