- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 1,230 for setups (0.09 sec)
-
.github/workflows/maven.yml
cancel-in-progress: true # clear all permissions for GITHUB_TOKEN permissions: {} jobs: initial-build: runs-on: ubuntu-latest steps: - name: Set up JDK uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5 with: java-version: 17 distribution: 'temurin' - name: Checkout maven
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Aug 25 07:07:00 UTC 2025 - 8.2K bytes - Viewed (0) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
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) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
@DisplayName("SmbComSeekResponse tests") class SmbComSeekResponseTest { @Mock private Configuration mockConfig; private SmbComSeekResponse response; @BeforeEach void setUp() { // Setup mock configuration to avoid NPE when(mockConfig.getPid()).thenReturn(12345); response = new SmbComSeekResponse(mockConfig); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0)