Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for setDdd (0.05 sec)

  1. src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java

            final MyClass2 dest = new MyClass2();
            dest.setAaa("aaa");
            dest.setBbb("bbb");
            dest.setDdd("ddd");
    
            BeanUtil.copyBeanToBean(src, dest);
            assertThat(dest.getAaa(), is("111"));
            assertThat(dest.getBbb(), is(nullValue()));
            assertThat(dest.getDdd(), is("ddd"));
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Fri Jun 20 13:40:57 UTC 2025
    - 34.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                @Override
                public OptionalEntity<WebConfig> getWebConfig(final String id) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId(id);
                    if (id.endsWith("P")) {
                        webConfig.setConfigParameter("config.pipeline=wp");
                    }
                    return OptionalEntity.of(webConfig);
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 34.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

        }
    
        public void test_equals_comprehensive() {
            PrunedTag tag1 = new PrunedTag("div");
            tag1.setId("test");
            tag1.setCss("highlight");
            tag1.setAttr("data-value", "123");
    
            PrunedTag tag2 = new PrunedTag("div");
            tag2.setId("test");
            tag2.setCss("highlight");
            tag2.setAttr("data-value", "123");
    
            assertTrue(tag1.equals(tag2));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/KeyMatchHelperTest.java

            } catch (NullPointerException e) {
                // Expected
            }
        }
    
        public void test_getBoostedDocumentList_noBoostList() {
            KeyMatch keyMatch = new KeyMatch();
            keyMatch.setId("nonexistent");
            keyMatch.setTerm("nonexistent");
            keyMatch.setVirtualHost("");
    
            try {
                List<Map<String, Object>> result = keyMatchHelper.getBoostedDocumentList(keyMatch);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 10.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

        public void test_getJobRuntime_null() {
            assertNull(jobHelper.getJobRuntime());
        }
    
        public void test_monitorTarget_expired_withoutEndTime() {
            JobLog jobLog = new JobLog();
            jobLog.setId("test-log-1");
            jobLog.setJobName("Test Job");
            jobLog.setEndTime(null);
    
            MonitorTarget target = new MonitorTarget(jobLog);
            try {
                target.expired();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java

        }
    
        public void test_store_existing() {
            final String sessionId = "existing-session";
            final CrawlingInfo existingInfo = new CrawlingInfo();
            existingInfo.setId("info-123");
            existingInfo.setSessionId(sessionId);
    
            // Mock CrawlingInfoService
            ComponentUtil.register(new CrawlingInfoService() {
                @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/user/allcommon/EsAbstractBehavior.java

            final IndexRequestBuilder builder = client.prepareIndex().setIndex(asEsIndex()).setSource(toSource(esEntity));
            final String id = esEntity.asDocMeta().id();
            if (id != null) {
                builder.setId(id);
            }
            final RequestOptionCall<IndexRequestBuilder> indexOption = esEntity.asDocMeta().indexOption();
            if (indexOption != null) {
                indexOption.callback(builder);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/opensearch/config/exentity/DuplicateHost.java

     */
    public class DuplicateHost extends BsDuplicateHost {
    
        private static final long serialVersionUID = 1L;
    
        public String getId() {
            return asDocMeta().id();
        }
    
        public void setId(final String id) {
            asDocMeta().id(id);
        }
    
        public Long getVersionNo() {
            return asDocMeta().version();
        }
    
        public void setVersionNo(final Long version) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractBehavior.java

            final IndexRequestBuilder builder = client.prepareIndex().setIndex(asEsIndex()).setSource(toSource(esEntity));
            final String id = esEntity.asDocMeta().id();
            if (id != null) {
                builder.setId(id);
            }
            final RequestOptionCall<IndexRequestBuilder> indexOption = esEntity.asDocMeta().indexOption();
            if (indexOption != null) {
                indexOption.callback(builder);
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/PrunedTag.java

        }
    
        /**
         * Sets the ID attribute value that this pruned tag should match.
         *
         * @param id the ID attribute value to match
         */
        public void setId(final String id) {
            this.id = id;
        }
    
        /**
         * Sets the CSS class name that this pruned tag should match.
         *
         * @param css the CSS class name to match
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
Back to top