- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 2,336 for overwrite (0.08 sec)
-
src/test/java/org/codelibs/fess/crawler/util/FieldConfigsTest.java
assertFalse(fieldConfigs.getConfig("foo").map(FieldConfigs.Config::isOverwrite).orElse(false)); } public void test_overwrite() { final Map<String, String> params = Maps.of("foo", "overwrite"); FieldConfigs fieldConfigs = new FieldConfigs(params); assertTrue(fieldConfigs.getConfig("test").isEmpty());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/en/docs/how-to/custom-request-and-route.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:39:38 UTC 2024 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FieldConfigs.java
return true; } return false; } public boolean isOverwrite() { for (final String value : values) { if ("overwrite".equalsIgnoreCase(value)) { return true; } } return false; } public String[] getValues() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
* aka OPEN_ALWAYS */ static final int FILE_OPEN_IF = 0x3; /* Open the file and overwrite it's contents or fail if it does not exist * aka TRUNCATE_EXISTING */ static final int FILE_OVERWRITE = 0x4; /* Open the file and overwrite it's contents or create it if it does not exist * aka CREATE_ALWAYS (according to the wire when calling CreateFile) */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNTCreateAndX.java
* aka OPEN_ALWAYS */ static final int FILE_OPEN_IF = 0x3; /* * Open the file and overwrite it's contents or fail if it does not exist * aka TRUNCATE_EXISTING */ static final int FILE_OVERWRITE = 0x4; /* * Open the file and overwrite it's contents or create it if it does not exist * aka CREATE_ALWAYS (according to the wire when calling CreateFile) */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 8.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/ModelVersionProcessor.java
* @return <code>true</code> if this is a valid property for this processor */ boolean isValidProperty(String property); /** * This method is responsible for examining the request and possibly overwrite of the valid properties in the model * * @param modelProperties * @param request */ void overwriteModelProperties(Properties modelProperties, ModelBuildingRequest request);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts
targetCompatibility = JavaVersion.VERSION_1_8 } kotlin { compilerOptions { allWarningsAsErrors = true jvmTarget.set(JvmTarget.JVM_1_8) } } detekt { // overwrite the config file's location config.convention(project.isolated.rootProject.projectDirectory.file("../gradle/detekt.yml"))
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 948 bytes - Viewed (0) -
bin/build_ztunnel.sh
echo "Downloading ztunnel: $1 to $2" time ${DOWNLOAD_COMMAND} --header "${AUTH_HEADER:-}" "$1" > "$2" chmod +x "$2" # Make a copy named just "ztunnel" in the same directory (overwrite if necessary). echo "Copying $2 to $(dirname "$2")/${3}" cp -f "$2" "$(dirname "$2")/${3}" popd # Also copy it to out/$os_arch/ztunnel as that's whats used in the build
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 02 21:46:06 UTC 2024 - 5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts
testImplementation("org.junit.vintage:junit-vintage-engine") } tasks.withType<KotlinCompile>().configureEach { compilerOptions { allWarningsAsErrors = true } } detekt { // overwrite the config file's location config.convention(project.isolated.rootProject.projectDirectory.file("../gradle/detekt.yml")) } tasks.named("codeQuality") { dependsOn("detekt") } tasks.validatePlugins {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/UrlQueueServiceImpl.java
* , java.lang.String) */ @Override public void updateSessionId(final String oldSessionId, final String newSessionId) { // not MT-safe final Queue<UrlQueueImpl<Long>> urlQueueList = dataHelper.getUrlQueueList(oldSessionId); // overwrite dataHelper.addUrlQueueList(newSessionId, urlQueueList);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 7.5K bytes - Viewed (0)