Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 3,883 for void (0.03 sec)

  1. src/main/java/org/codelibs/fess/es/config/allcommon/EsSqlClause.java

            super(tableDbName);
        }
    
        @Override
        public void lockForUpdate() {
        }
    
        @Override
        public DBWay dbway() {
            return null;
        }
    
        @Override
        protected void doFetchFirst() {
        }
    
        @Override
        protected void doFetchPage() {
        }
    
        @Override
        protected void doClearFetchPageClause() {
        }
    
        @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/filter/UrlFilter.java

         *
         * @param urlPattern Regular expression that is not crawled
         */
        void addExclude(String urlPattern);
    
        /**
         * Process an url when it's added as a seed url.
         *
         * @param url URL
         */
        void processUrl(String url);
    
        /**
         * Clear this filter.
         */
        void clear();
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/bsentity/BsUser.java

        }
    
        public void setBusinessCategory(String value) {
            registerModifiedProperty("businessCategory");
            this.businessCategory = value;
        }
    
        public String getCarLicense() {
            checkSpecifiedProperty("carLicense");
            return convertEmptyToNull(carLicense);
        }
    
        public void setCarLicense(String value) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            Thread.setDefaultUncaughtExceptionHandler(eh);
        }
    
        public void setMaxIndexerErrorCount(final int maxIndexerErrorCount) {
            this.maxIndexerErrorCount = maxIndexerErrorCount;
        }
    
        public void addDocBoostMatcher(final DocBoostMatcher rule) {
            docBoostMatcherList.add(rule);
        }
    
        public void setCrawlerList(final List<Crawler> crawlerList) {
            this.crawlerList = crawlerList;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

         */
        @Override
        public void prepare ( CommonServerMessageBlockRequest next ) {
            CommonServerMessageBlockResponse n = getNextResponse();
            if ( n != null ) {
                n.prepare(next);
            }
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.smb2.ServerMessageBlock2#reset()
         */
        @Override
        public void reset () {
            super.reset();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  6. android/guava-testlib/test/com/google/common/collect/testing/features/FeatureUtilTest.java

        }
      }
    
      public void testTestFeatureEnums() {
        // Haha! Let's test our own test rig!
        assertGoodFeatureEnum(ExampleFeature.class);
      }
    
      public void testAddImpliedFeatures_returnsSameSetInstance() {
        Set<Feature<?>> features = newHashSet(FOO);
        assertThat(addImpliedFeatures(features)).isSameInstanceAs(features);
      }
    
      public void testAddImpliedFeatures_addsImpliedFeatures() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 05 22:05:05 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsFileAuthenticationCB.java

            public void columnId() {
                doColumn("_id");
            }
    
            public void columnCreatedBy() {
                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnFileConfigId() {
                doColumn("fileConfigId");
            }
    
            public void columnHostname() {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractorTest.java

            }
        }
    
        public void test_getDecodeText() throws Exception {
            assertEquals("", emlExtractor.getDecodeText(null));
            assertEquals("", emlExtractor.getDecodeText(""));
            assertEquals("abc123", emlExtractor.getDecodeText("abc123"));
            assertEquals("ใƒ†ใ‚นใƒˆ", emlExtractor.getDecodeText("=?UTF-8?B?44OG44K544OI?="));
        }
    
        public void test_getTextWithAttachment() throws IOException {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/es/log/bsbhv/BsFavoriteLogBhv.java

        public void insert(FavoriteLog entity) {
            doInsert(entity, null);
        }
    
        public void insert(FavoriteLog entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(FavoriteLog entity) {
            doUpdate(entity, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/user/bsbhv/BsRoleBhv.java

        public void insert(Role entity) {
            doInsert(entity, null);
        }
    
        public void insert(Role entity, RequestOptionCall<IndexRequestBuilder> opLambda) {
            entity.asDocMeta().indexOption(opLambda);
            doInsert(entity, null);
        }
    
        public void update(Role entity) {
            doUpdate(entity, null);
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top