Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 595 for klog (0.06 sec)

  1. guava/src/com/google/common/collect/Comparators.java

       * // returns {"foo", "quux"}
       * }
       *
       * <p>This {@code Collector} uses O(k) memory and takes expected time O(n) (worst-case O(n log
       * k)), as opposed to e.g. {@code Stream.sorted(comparator).limit(k)}, which currently takes O(n
       * log n) time and O(n) space.
       *
       * @throws IllegalArgumentException if {@code k < 0}
       * @since 22.0
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/LeaseManager.java

                        // For now, we log the action as the actual implementation
                        // depends on SmbFile's internal caching mechanism
                        log.info("Flushed write cache for: {}", path);
                    } catch (Exception e) {
                        log.error("Error flushing write cache for path: " + path, e);
                    }
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        /**
         * Represents an API response for a log entry.
         */
        public static class ApiLogResponse extends ApiResponse {
            /** The log entry object. */
            protected Object log;
    
            /**
             * Default constructor for ApiLogResponse.
             */
            public ApiLogResponse() {
                super();
            }
    
            /**
             * Sets the log entry object.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/Smb2SigningDigest.java

            if (data == null) {
                log.error("Data buffer is null in verify");
                return false;
            }
            if (offset < 0 || length < 0) {
                log.error("Invalid offset or length in verify: offset={}, length={}", offset, length);
                return false;
            }
            if (offset + length > data.length) {
                log.error("Offset + length exceeds data buffer size in verify");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFileOutputStream.java

                this.writeSizeFile = Math.min(th.getConfig().getSendBufferSize() - 70, 0xFFFF - 70);
            } else {
                log.debug("No support or SMB signing is enabled, not enabling large writes");
                this.writeSizeFile = this.writeSize;
            }
    
            if (log.isDebugEnabled()) {
                log.debug("Negotiated file write size is " + this.writeSizeFile);
            }
    
            if (this.useNTSmbs) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/concurrent/TaskLogger.kt

          val elapsedNs = queue.taskRunner.backend.nanoTime() - startNs
          if (completedNormally) {
            log(task, queue, "finished run in ${formatDuration(elapsedNs)}")
          } else {
            log(task, queue, "failed a run in ${formatDuration(elapsedNs)}")
          }
        }
      }
    }
    
    private fun Logger.log(
      task: Task,
      queue: TaskQueue,
      message: String,
    ) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/searchlog/SearchForm.java

    import org.codelibs.fess.app.pager.SearchLogPager;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * The search form for Search Log.
     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The log type field for filtering search logs.
         */
        public String logType;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/NtlmContext.java

                token = msg1.toByteArray();
    
                if (LogStream.level >= 4) {
                    log.println(msg1);
                    if (LogStream.level >= 6) {
                        Hexdump.hexdump(log, token, 0, token.length);
                    }
                }
    
                state++;
                break;
            case 2:
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                    if (e.getNtStatus() == 0xC0000120) {
                        // cancelled
                        log.debug("Request was cancelled", e);
                        return null;
                    }
                    throw e;
                }
                if (log.isTraceEnabled()) {
                    log.trace("Returned from NtTransNotifyChange " + resp.getErrorCode());
                }
    
                if (!resp.isReceived()) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/failureurl/ApiAdminFailureurlAction.java

                    .result());
        }
    
        // GET /api/admin/failureurl/log/{id}
        /**
         * Retrieves a specific failure URL log by ID.
         *
         * @param id the failure URL log ID
         * @return JSON response containing the failure URL log
         */
        @Execute
        public JsonResponse<ApiResult> get$log(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.2K bytes
    - Viewed (0)
Back to top