- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 148 for exclude1 (0.03 sec)
-
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) -
android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java
* * <p>If not all classes on the classpath should be covered, {@link #ignoreClasses} can be used to * exclude certain classes. As a special case, classes with an underscore in the name (like {@code * AutoValue_Foo}) can be excluded using <code>ignoreClasses({@link #UNDERSCORE_IN_NAME})</code>. * * <p>{@link #setDefault} allows subclasses to specify default values for types. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 17.8K bytes - Viewed (0) -
regression-test/build.gradle.kts
} kotlinOptions { jvmTarget = JavaVersion.VERSION_11.toString() } // issue merging due to conflict with httpclient and something else packagingOptions.resources.excludes += setOf( "META-INF/DEPENDENCIES" ) } dependencies { val okhttpLegacyVersion = "3.12.12" implementation(libs.kotlin.reflect) implementation(libs.playservices.safetynet)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Mar 17 15:11:24 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
/** * Array of property names to exclude from the operation. */ protected final List<String> excludePropertyNames = newArrayList(); /** * Whether to exclude properties with null values from the operation. */ protected boolean excludesNull = false; /** * Whether to exclude strings that consist only of whitespace from the operation. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/resources/fess_config.properties
crawler.document.html.default.include.index.patterns= # Patterns to exclude for HTML index processing. crawler.document.html.default.exclude.index.patterns=(?i).*(css|js|jpeg|jpg|gif|png|bmp|wmv|xml|ico|exe) # Patterns to include for HTML search processing. crawler.document.html.default.include.search.patterns= # Patterns to exclude for HTML search processing. crawler.document.html.default.exclude.search.patterns= # file
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
logger.debug("Path {} matches the exclude path expression {} on {} of label.", path, excludedPaths, value); } return false; } if (logger.isDebugEnabled()) { logger.debug("Path {} does not match the exclude path expression {} on {} of label.", path, excludedPaths, value); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0) -
fuzzing/fuzzingserver-config.json
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Mar 26 02:01:32 UTC 2019 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java
* @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { copyBeanToBean(form, dataConfigPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); return asHtml(path_AdminDataconfig_AdminDataconfigJsp).renderWith(data -> { searchPaging(data, form); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.authRealm=Realm labels.available=Status labels.createdBy=Created By labels.createdTime=Created Time labels.depth=Depth labels.excludedPaths=Excluded Paths for Crawling labels.excludedUrls=Excluded URLs for Crawling labels.excludedDocPaths=Excluded Paths for Searching labels.excludedDocUrls=Excluded URLs for Searching labels.hostname=Hostname labels.id=ID labels.includedPaths=Included Paths for Crawling
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0)