Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Debugging (0.15 sec)

  1. src/main/java/org/codelibs/fess/job/ExecJob.java

        public ExecJob useLocalFesen(final boolean useLocalFesen) {
            this.useLocalFesen = useLocalFesen;
            return this;
        }
    
        /**
         * Enables remote debugging for this job execution.
         * Adds JVM options for remote debugging on localhost:8000.
         *
         * @return this ExecJob instance for method chaining
         */
        public ExecJob remoteDebug() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/base/SplitterTest.java

            Splitter.on('-').split("Testing-rocks-Debugging-sucks");
        assertThat(testCharacteringMotto)
            .containsExactly("Testing", "rocks", "Debugging", "sucks")
            .inOrder();
      }
    
      public void testCharacterSplitWithMatcherDelimiter() {
        Iterable<String> testCharacteringMotto =
            Splitter.on(CharMatcher.whitespace()).split("Testing\nrocks\tDebugging sucks");
        assertThat(testCharacteringMotto)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.5K bytes
    - Viewed (0)
  3. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

        /**
         * Attaches [tag] to the request using [T] as a key. Tags can be read from a request using
         * [Request.tag]. Use null to remove any existing tag assigned for [T].
         *
         * Use this API to attach timing, debugging, or other application data to a request so that
         * you may read it in interceptors, event listeners, or callbacks.
         */
        @JvmName("reifiedTag")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 13.1K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

    /**
     * Form class for editing failure URL records in the admin interface.
     * This form handles the editing of URLs that failed during crawling operations,
     * providing details about the failure for debugging and troubleshooting purposes.
     */
    public class EditForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

                // or restricted access to system resources. This is acceptable.
                // We primarily want to ensure the method can be called without compilation errors
    
                // Log the exception for debugging purposes but don't fail the test
                System.out.println("Expected exception in test environment: " + t.getClass().getSimpleName() + ": " + t.getMessage());
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

            queryMap.put(key, query);
        }
    
        /**
         * Returns a string representation of this FacetQueryView object.
         * Includes the title and query map for debugging purposes.
         *
         * @return string representation of this FacetQueryView instance
         */
        @Override
        public String toString() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

              if (prev == PARKED) {
                LockSupport.unpark((Thread) currentRunner);
              }
            }
          }
        }
      }
    
      /**
       * Using this as the blocker object allows introspection and debugging tools to see that the
       * currentRunner thread is blocked on the progress of the interruptor thread, which can help
       * identify deadlocks.
       */
      @VisibleForTesting
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 10K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

        delegate.awaitTerminated(timeout, unit);
      }
    
      /**
       * Returns the name of this service. {@link AbstractExecutionThreadService} may include the name
       * in debugging output.
       *
       * <p>Subclasses may override this method.
       *
       * @since 14.0 (present in 10.0 as getServiceName)
       */
      protected String serviceName() {
        return getClass().getSimpleName();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java

    import org.codelibs.core.exception.IORuntimeException;
    import org.codelibs.fess.Constants;
    
    /**
     * Utility class for generating and writing thread dumps.
     * Provides methods to capture thread information for debugging purposes.
     */
    public class ThreadDumpUtil {
        private static final Logger logger = LogManager.getLogger(ThreadDumpUtil.class);
    
        /**
         * Private constructor to prevent instantiation of this utility class.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java

        delegate.awaitTerminated(timeout, unit);
      }
    
      /**
       * Returns the name of this service. {@link AbstractExecutionThreadService} may include the name
       * in debugging output.
       *
       * <p>Subclasses may override this method.
       *
       * @since 14.0 (present in 10.0 as getServiceName)
       */
      protected String serviceName() {
        return getClass().getSimpleName();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top