Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for toclevels (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java

            CrawlerSystemException topLevel = new CrawlerSystemException("Top level", level1);
    
            // Verify chain
            assertSame(level1, topLevel.getCause());
            assertSame(level2, topLevel.getCause().getCause());
            assertSame(level3, topLevel.getCause().getCause().getCause());
            assertNull(topLevel.getCause().getCause().getCause().getCause());
    
            // Verify messages
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Wed Sep 03 14:42:53 GMT 2025
    - 20K bytes
    - Click Count (0)
  2. ci/official/utilities/setup.sh

    set -exo pipefail -o history -o allexport
    
    # Set TFCI_GIT_DIR, the root directory for all commands, to two directories
    # above the location of this file (setup.sh). We could also use "git rev-parse
    # --show-toplevel", but that wouldn't work for non-git repos (like if someone
    # downloaded TF as a zip archive).
    export TFCI_GIT_DIR=$(cd $(dirname "$0"); realpath ../../)
    cd "$TFCI_GIT_DIR"
    
    Created: Tue Dec 30 12:39:10 GMT 2025
    - Last Modified: Thu Jan 09 18:37:25 GMT 2025
    - 6.2K bytes
    - Click Count (0)
Back to Top