- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 133 for exclude1 (0.04 sec)
-
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
assertTrue(result.contains("exclude1")); } public void test_getCacheKey_sorting() { String seed = "test_seed"; String[] tags = { "zzz", "aaa", "mmm" }; String[] roles = { "role3", "role1", "role2" }; String[] fields = { "field3", "field1", "field2" }; String[] excludes = { "exclude3", "exclude1", "exclude2" };
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PopularWordHelper.java
* @param roles array of roles * @param fields array of fields * @param excludes array of excluded words * @return cache key string */ protected String getCacheKey(final String seed, final String[] tags, final String[] roles, final String[] fields, final String[] excludes) { final StringBuilder buf = new StringBuilder(100); buf.append(seed).append(CACHE_KEY_SPLITTER);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.3K bytes - Viewed (0) -
futures/failureaccess/pom.xml
<Multi-Release>true</Multi-Release> </manifestEntries> </archive> <excludes> <exclude>/module-info.class</exclude> <exclude>META-INF/versions/9/com/google/common/util/concurrent/internal/*.class</exclude> </excludes> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 18:13:11 UTC 2025 - 5.4K bytes - Viewed (0) -
android/pom.xml
<excludes> <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. --> <exclude>/module-info.class</exclude> <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. --> <exclude>META-INF/versions/9/com/**/*.class</exclude> </excludes> <archive>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
<excludes> <!-- The root module (where applicable) is withheld because it is provided at `META-INF/versions/9/`. --> <exclude>/module-info.class</exclude> <!-- Avoid duplicating compiled classes within the `META-INF/versions/9/` root. --> <exclude>META-INF/versions/9/com/**/*.class</exclude> </excludes> <archive>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/LabelTypeHelperTest.java
LabelTypePattern pattern = new LabelTypePattern("test", null, "/exclude.*"); // Should match anything except excluded assertTrue(pattern.match("/test/path")); // Should not match excluded path assertFalse(pattern.match("/exclude/path")); } public void test_labelTypePattern_match_noPatterns() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 12.4K bytes - Viewed (0) -
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> <sourceDirectory>src/main/webapp/js</sourceDirectory> </configuration> </plugin> <plugin>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Sep 04 05:22:58 UTC 2025 - 49.6K bytes - Viewed (0) -
guava-gwt/pom.xml
</excludes> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <configuration> <excludes> <!-- 3. Don't include it in the source jar (since it's really more of a "test" than it is production code). --> <exclude>**/ForceGuavaCompilation*</exclude>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptionsUtil.java
* * @param propertyNames * An array of property names. Must not be {@literal null} or an empty array. * @return A {@link CopyOptions} with the specified property names to exclude from the operation. * @see CopyOptions#exclude(CharSequence...) */ public static CopyOptions exclude(final CharSequence... propertyNames) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 10.6K bytes - Viewed (0) -
android-test/build.gradle.kts
testImplementation(rootProject.libs.junit.vintage.engine) androidTestImplementation(projects.okhttpTestingSupport) { exclude("org.openjsse", "openjsse") exclude("org.conscrypt", "conscrypt-openjdk-uber") exclude("software.amazon.cryptools", "AmazonCorrettoCryptoProvider") } androidTestImplementation(libs.assertk) androidTestImplementation(libs.bouncycastle.bcprov)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jul 29 20:01:04 UTC 2025 - 3.8K bytes - Viewed (2)