Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for excludes (0.33 sec)

  1. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #         ; !InScope = map:{ $$ALL$$ = list:{ type:LONGVARCHAR } }
    #     }
    #     # This means that Number excludes all version-no's NotEqual.
    #     ; Number = map:{
    #         ; !NotEqual = map:{ $$ALL$$ = list:{ $$VersionNo$$ } }
    #     }
    #     # This means that Date does not includes NotEqual at all tables.  
    #     ; Date = map:{
    #         ; NotEqual = map:{}
    #     }
    # }
    #
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                            .toArray(n -> new String[n]);
            final String[] baseFields = fields != null ? fields : fessConfig.getSuggestPopularWordFieldsAsArray();
            final String[] baseExcludes = excludes != null ? excludes : fessConfig.getSuggestPopularWordExcludesAsArray();
            try {
                return cache.get(getCacheKey(baseSeed, baseTags, baseRoles, baseFields, baseExcludes), () -> {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_config.properties

    crawler.document.html.default.lang=
    crawler.document.html.default.include.index.patterns=
    crawler.document.html.default.exclude.index.patterns=(?i).*(css|js|jpeg|jpg|gif|png|bmp|wmv|xml|ico|exe)
    crawler.document.html.default.include.search.patterns=
    crawler.document.html.default.exclude.search.patterns=
    
    # file
    crawler.document.file.name.encoding=
    crawler.document.file.no.title.label=No title.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  5. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

            assertEquals("fess.update", resultMap.get("index"));
            assertEquals(
                    "{\"query\":{\"ids\":{\"values\":[\"001\"],\"boost\":1.0}},\"_source\":{\"includes\":[\"title\",\"content\"],\"excludes\":[]}}",
                    resultMap.get("query"));
            assertEquals(3, document.size());
        }
    
        public void test_getDocumentListByPrefixId() {
            documentSizeByQuery = 1L;
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.3K bytes
    - Viewed (0)
  6. src/main/assemblies/common-bin.xml

    			</includes>
    			<outputDirectory>fess-${project.version}/lib/classes</outputDirectory>
    		</fileSet>
    		<!-- logs -->
    		<fileSet>
    			<directory>src/main/assemblies/files</directory>
    			<outputDirectory>fess-${project.version}/logs</outputDirectory>
    			<excludes>
    				<exclude>*</exclude>
    			</excludes>
    			<filtered>false</filtered>
    		</fileSet>
    		<!-- temp -->
    		<fileSet>
    			<directory>src/main/assemblies/files</directory>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 17 02:29:43 GMT 2022
    - 3.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

            });
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, elevateWordPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
            return asHtml(path_AdminElevateword_AdminElevatewordJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        @Execute
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        public static OptionalEntity<Group> getGroup(final CreateForm form) {
            return getEntity(form).map(entity -> {
                copyMapToBean(form.attributes, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
                copyBeanToBean(form, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
                return entity;
            });
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java

        public static OptionalEntity<User> getUser(final CreateForm form) {
            return getEntity(form).map(entity -> {
                copyMapToBean(form.attributes, entity, op -> op.exclude(Constants.COMMON_CONVERSION_RULE));
                copyBeanToBean(form, entity, op -> op.exclude(ArrayUtils.addAll(Constants.COMMON_CONVERSION_RULE, "password")));
                if (form.crudMode.intValue() == CrudMode.CREATE || StringUtil.isNotBlank(form.password)) {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

            });
        }
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse search(final SearchForm form) {
            copyBeanToBean(form, fileAuthenticationPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE));
            return asHtml(path_AdminFileauth_AdminFileauthJsp).renderWith(data -> {
                searchPaging(data, form);
            });
        }
    
        @Execute
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.5K bytes
    - Viewed (0)
Back to top