Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 374 for hashMap (0.03 sec)

  1. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            // Test with boolean data
            Map<String, Object> booleanData = new HashMap<>();
            booleanData.put("flag", true);
            callback.store(params, booleanData);
    
            // Test with nested map
            Map<String, Object> nestedData = new HashMap<>();
            Map<String, String> innerMap = new HashMap<>();
            innerMap.put("inner", "value");
            nestedData.put("nested", innerMap);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/it/admin/DataConfigTests.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.it.admin;
    
    import java.util.HashMap;
    import java.util.Map;
    
    import org.codelibs.fess.it.CrudTestBase;
    import org.junit.jupiter.api.Tag;
    import org.junit.jupiter.api.Test;
    
    @Tag("it")
    public class DataConfigTests extends CrudTestBase {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/smb1/DfsTest.java

        }
    
        @Test
        void testGetTrustedDomains_Cached() throws SmbAuthException {
            Dfs.CacheEntry cacheEntry = new Dfs.CacheEntry(300);
            HashMap<String, HashMap> trustedDomains = new HashMap<>();
            trustedDomains.put("domain.com", new HashMap());
            cacheEntry.map = trustedDomains;
            dfs._domains = cacheEntry;
    
            assertEquals(trustedDomains, dfs.getTrustedDomains(auth));
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

         * @return The user properties with contributions.
         */
        default Map<String, String> contribute(ProtoSession protoSession) {
            HashMap<String, String> userProperties = new HashMap<>(protoSession.getUserProperties());
            contribute(userProperties);
            return userProperties;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Nov 20 19:58:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

            thumbnailManager.add(generator);
    
            Map<String, Object> docMap = new HashMap<>();
            docMap.put("_id", "docid1");
    
            // Fill the queue
            thumbnailManager.offer(docMap);
    
            // Try to add another - should succeed (warning logged but still returns true)
            Map<String, Object> docMap2 = new HashMap<>();
            docMap2.put("_id", "docid2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("file_config_id", getFileConfigId());
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/collection/CollectionsUtilTest.java

         * {@link org.codelibs.core.collection.CollectionsUtil#isEmpty(java.util.Map)}
         * .
         */
        @Test
        public void testIsEmptyMapOfQQ() {
            HashMap<String, String> map = null;
            assertThat(CollectionsUtil.isEmpty(map), is(true));
            map = new HashMap<String, String>();
            assertThat(CollectionsUtil.isEmpty(map), is(true));
        }
    
        /**
         * Test method for
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/it/admin/WebAuthTests.java

            final Map<String, Object> requestBody = new HashMap<>();
            final String keyProp = NAME_PREFIX + id;
            requestBody.put(KEY_PROPERTY, keyProp);
            requestBody.put("web_config_id", getWebConfigId());
            return requestBody;
        }
    
        @Override
        protected Map<String, Object> getUpdateMap() {
            final Map<String, Object> updateMap = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/curl/CurlResponseTest.java

    import static org.junit.Assert.assertSame;
    import static org.junit.Assert.assertTrue;
    import static org.junit.Assert.fail;
    
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import org.codelibs.curl.io.ContentCache;
    import org.junit.Test;
    
    /**
     * Test class for CurlResponse.
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  10. src/test/java/jcifs/pac/kerberos/KerberosRelevantAuthDataTest.java

    import static org.mockito.ArgumentMatchers.eq;
    import static org.mockito.Mockito.mock;
    import static org.mockito.Mockito.mockStatic;
    
    import java.io.IOException;
    import java.util.Collections;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    
    import javax.security.auth.kerberos.KerberosKey;
    
    import org.bouncycastle.asn1.ASN1EncodableVector;
    import org.bouncycastle.asn1.ASN1Integer;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9K bytes
    - Viewed (0)
Back to top