Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 1,094 for isSetup (0.05 sec)

  1. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.job.LaCron;
    
    public class JobHelperTest extends UnitFessTestCase {
    
        private JobHelper jobHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            jobHelper = new JobHelper();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
            ComponentUtil.register(new MockJobLogBhv(), JobLogBhv.class.getCanonicalName());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb1/smb1/SmbSessionTest.java

        // performs several other operations, but for the purpose of the test
        // we intercept the factory call.
        private MockedStatic<SmbTransport> smbtStatic;
    
        @BeforeEach
        void setUp() throws Exception {
            // Create a real NtlmPasswordAuthentication instance
            auth = new NtlmPasswordAuthentication("TESTDOMAIN", "testuser", "testpass");
    
            // Initialize ServerData to avoid NullPointerException
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. .github/workflows/go.yml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.24.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
              CGO_ENABLED: 0
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  4. .github/workflows/go-lint.yml

        runs-on: ${{ matrix.os }}
        strategy:
          matrix:
            go-version: [1.24.x]
            os: [ubuntu-latest]
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: ${{ matrix.go-version }}
              check-latest: true
          - name: Build on ${{ matrix.os }}
            if: matrix.os == 'ubuntu-latest'
            env:
              CGO_ENABLED: 0
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 09 14:28:39 UTC 2025
    - 1010 bytes
    - Viewed (0)
  5. src/test/java/jcifs/ConfigTest.java

    /**
     * Test class for Config utility functionality
     */
    @DisplayName("Config Utility Tests")
    class ConfigTest extends BaseTest {
    
        private Properties testProperties;
    
        @BeforeEach
        void setUp() {
            testProperties = new Properties();
            testProperties.setProperty("test.int", "123");
            testProperties.setProperty("test.long", "1234567890123");
            testProperties.setProperty("test.bool.true", "true");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  6. buildscripts/verify-healing-with-root-disks.sh

    		mkdir -p ${WORK_DIR}/mnt/disk${i}/
    		sudo mount ${device} ${WORK_DIR}/mnt/disk${i}/
    		sudo chown "$(id -u):$(id -g)" ${device} ${WORK_DIR}/mnt/disk${i}/
    	done
    	set +e
    }
    
    # Start a distributed MinIO setup, unmount one disk and check if it is formatted
    function main() {
    	start_port=$(shuf -i 10000-65000 -n 1)
    	start_minio ${start_port}
    
    	# Unmount the disk, after the unmount the device id
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/score/QueryRescorerTest.java

    import org.opensearch.search.rescore.RescorerBuilder;
    
    public class QueryRescorerTest extends UnitFessTestCase {
    
        private QueryRescorer queryRescorer;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        public void test_evaluate_withNullParams() {
            // Test implementation that returns null
            queryRescorer = new QueryRescorer() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

            return new org.codelibs.fess.mylasta.direction.FessFwAssistantDirector();
        }
    
        private FessCurtainFinallyHook curtainFinallyHook;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            curtainFinallyHook = new FessCurtainFinallyHook();
        }
    
        // Test normal execution of hook method
        public void test_hook_normalExecution() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

    public class ImplementedInvokerAssistantTest extends UnitFessTestCase {
    
        private ImplementedInvokerAssistant invokerAssistant;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            invokerAssistant = new ImplementedInvokerAssistant();
        }
    
        // Test constructor
        public void test_constructor() {
            assertNotNull(new ImplementedInvokerAssistant());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/job/JobExecutorTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class JobExecutorTest extends UnitFessTestCase {
    
        private JobExecutor jobExecutor;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            // Create a concrete implementation for testing
            jobExecutor = new TestJobExecutor();
        }
    
        public void test_execute() {
            // Test execute method
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.1K bytes
    - Viewed (0)
Back to top