- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 1,183 for setMap (0.65 sec)
-
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class FessLabelsTest extends UnitFessTestCase { private FessLabels fessLabels; @Override public void setUp() throws Exception { super.setUp(); fessLabels = new FessLabels(); } /** * Test that assertPropertyNotNull throws exception for null input */ public void test_assertPropertyNotNull_withNull() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java
public class FessUserBeanTest extends UnitFessTestCase { private FessUserBean fessUserBean; private TestFessUser testUser; @Override public void setUp() throws Exception { super.setUp(); testUser = new TestFessUser(); fessUserBean = new FessUserBean(testUser); } public void test_getUserId() { // Test with normal user
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class DataStoreTest extends UnitFessTestCase { private DataStore dataStore; @Override public void setUp() throws Exception { super.setUp(); } public void test_store_basic() { // Create a simple DataStore implementation for testing final AtomicBoolean storeCalled = new AtomicBoolean(false);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
doc/go_mem.html
</p> <pre> var a string var once sync.Once func setup() { a = "hello, world" } func doprint() { once.Do(setup) print(a) } func twoprint() { go doprint() go doprint() } </pre> <p> calling <code>twoprint</code> will call <code>setup</code> exactly once. The <code>setup</code> function will complete before either call of <code>print</code>.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 15:41:37 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/GeneralTests.java
protected void testRead() { final Map<String, Object> searchBody = new HashMap<>(); String response = checkGetMethod(searchBody, "").asString(); final Map<String, Object> res = JsonPath.from(response).getMap("response.setting"); assertTrue(!res.isEmpty()); assertEquals(Integer.valueOf(0), JsonPath.from(response).get("response.status")); } @Override protected void tearDown() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jun 19 07:14:01 UTC 2025 - 2.6K bytes - Viewed (0) -
.github/workflows/golangci-lint.yml
pull_request: permissions: contents: read pull-requests: read jobs: golangci: name: lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-go@v5 with: go-version: stable - name: golangci-lint uses: golangci/golangci-lint-action@v7 with: version: v2.0
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Apr 17 07:30:17 UTC 2025 - 471 bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/HashMultisetAddPresentBenchmark.java
private static final int ARRAY_SIZE = 0x10000; List<Multiset<Integer>> multisets = new ArrayList<>(0x10000); int[] queries = new int[ARRAY_SIZE]; @BeforeExperiment void setUp() { Random random = new Random(); multisets.clear(); for (int i = 0; i < ARRAY_SIZE; i++) { HashMultiset<Integer> multiset = HashMultiset.<Integer>create(); multisets.add(multiset);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcGetMembersInAliasTest.java
/** * Tests for the MsrpcGetMembersInAlias class. */ class MsrpcGetMembersInAliasTest { private SamrAliasHandle aliasHandle; private LsarSidArray sids; @BeforeEach void setUp() { // Create mock objects for the constructor parameters aliasHandle = mock(SamrAliasHandle.class); sids = mock(LsarSidArray.class); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationTest.java
public class SmbComQueryInformationTest { private static final String TEST_FILE_NAME = "testFile.txt"; private SmbComQueryInformation smbComQueryInformation; @BeforeEach public void setUp() { smbComQueryInformation = new SmbComQueryInformation(TEST_FILE_NAME); } @Test public void testConstructor() { // Test if the constructor sets the file name and command correctly
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
import org.codelibs.fess.util.ComponentUtil; public class SearchLogHelperTest extends UnitFessTestCase { private SearchLogHelper searchLogHelper; @Override public void setUp() throws Exception { super.setUp(); searchLogHelper = new SearchLogHelper(); setupMockComponents(); searchLogHelper.init(); } private void setupMockComponents() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0)