Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 443 for logo (0.02 sec)

  1. okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceRecorder.kt

        eventSource: EventSource,
        response: Response,
      ) {
        get().log("[ES] onOpen", Platform.INFO, null)
        events.add(Open(eventSource, response))
        drainCancelQueue(eventSource)
      }
    
      override fun onEvent(
        eventSource: EventSource,
        id: String?,
        type: String?,
        data: String,
      ) {
        get().log("[ES] onEvent", Platform.INFO, null)
        events.add(Event(id, type, data))
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 11:32:52 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/log/Logger.java

         * @param logMessage
         *            Log message. Must not be {@literal null}.
         */
        public void log(final LogMessage logMessage) {
            assertArgumentNotNull("logMessage", logMessage);
    
            log(logMessage, null);
        }
    
        /**
         * Outputs a log entry.
         * <p>
         * The log message should be created using the {@link #format(String, Object...)} method.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/esfluteMap.dfprop

                ; package = log
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_log.xml
                ; mappingMap = map:{
                    ; type = map:{
                        ; date@dateOptionalTime = LocalDateTime
                    }
                }
            }
            ; fess_log.favorite_log = map:{
                ; package = log
                ; esclientDiFile = esclient.xml
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /**
         * Get the value for the key 'index.backup.log.load.timeout'. <br>
         * The value is, e.g. 60000 <br>
         * comment: Timeout for loading index backup logs.
         * @return The value of found property. (NotNull: if not found, exception but basically no way)
         */
        String getIndexBackupLogLoadTimeout();
    
        /**
         * Get the value for the key 'index.backup.log.load.timeout' as {@link Integer}. <br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  5. okhttp/src/androidMain/kotlin/okhttp3/internal/platform/Android10Platform.kt

        AndroidCertificateChainCleaner.buildIfSupported(trustManager) ?: super.buildCertificateChainCleaner(trustManager)
    
      override fun log(
        message: String,
        level: Int,
        t: Throwable?,
      ) {
        if (level == WARN) {
          Log.w(Tag, message, t)
        } else {
          Log.i(Tag, message, t)
        }
      }
    
      companion object {
        val isSupported: Boolean = isAndroid && Build.VERSION.SDK_INT >= 29
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Jul 20 11:25:50 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/replaceSchemaMap.dfprop

        # o isLoggingInsertSql: (NotRequired - Default true)
        #  Does it show insert values on log?
        #
        #; isLoggingInsertSql = true
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isLoggingReplaceSql: (NotRequired - Default true)
        #  Does it show replace-SQL on log?
        #
        #; isLoggingReplaceSql = true
        # - - - - - - - - - -/
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 9.3K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/math/MathBenchmarking.java

        return result;
      }
    
      /**
       * Generates a number in [0, 2^numBits) with an exponential distribution. The floor of the log2 of
       * the result is chosen uniformly at random in [0, numBits), and then the result is chosen in that
       * range uniformly at random. Zero is treated as having log2 == 0.
       */
      static BigInteger randomNonNegativeBigInteger(int numBits) {
        int digits = RANDOM_SOURCE.nextInt(numBits);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsSearchLogBhv.java

     */
    package org.codelibs.fess.opensearch.log.bsbhv;
    
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.fess.opensearch.log.allcommon.EsAbstractBehavior;
    import org.codelibs.fess.opensearch.log.allcommon.EsAbstractEntity.RequestOptionCall;
    import org.codelibs.fess.opensearch.log.bsentity.dbmeta.SearchLogDbm;
    import org.codelibs.fess.opensearch.log.cbean.SearchLogCB;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java

      public ImmutableMultisetFloodingTest() {
        super(
            asList(ConstructionPathway.values()),
            n -> n * log(n),
            ImmutableList.of(
                QueryOp.create(
                    "count",
                    (ms, o) -> {
                      int unused = ms.count(o);
                    },
                    Math::log)));
      }
    
      /** All the ways to create an ImmutableMultiset. */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/log/bsentity/dbmeta/ClickLogDbm.java

            return "org.codelibs.fess.opensearch.log.exentity.ClickLog";
        }
    
        @Override
        public String getConditionBeanTypeName() {
            return "org.codelibs.fess.opensearch.log.cbean.ClickLogCB";
        }
    
        @Override
        public String getBehaviorTypeName() {
            return "org.codelibs.fess.opensearch.log.exbhv.ClickLogBhv";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10.6K bytes
    - Viewed (0)
Back to top