- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 660 for existem (0.29 sec)
-
src/main/resources/fess_message_ja.properties
errors.app.illegal.transition = 不正な遷移のため、再度実行してください。 errors.app.db.already.deleted = 他の処理で削除されている可能性があります。再度、操作をやり直してください。 errors.app.db.already.updated = 他の処理で更新されている可能性があります。再度、操作をやり直してください。 errors.app.db.already.exists = データがすでに存在しています。再度、操作をやり直してください。 errors.app.double.submit.request = このリクエストの前に処理されている場合があります。再度、操作をやり直してください。 # _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Jun 28 08:40:50 UTC 2025 - 15.2K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java
org = activationFile.getMissing(); val = interpolate(org); if (org != val) { activationFile.setMissing(val); } // Exists org = activationFile.getExists(); val = interpolate(org); if (org != val) { activationFile.setExists(val); } }
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Feb 25 08:27:34 UTC 2025 - 43.1K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java
* First, this method resolves the given root against the {@linkplain #getBaseDirectory() base directory}, * then normalizes the path. If a source already exists for the same scope, language and normalized directory, * this method does nothing. Otherwise, the normalized directory is added as a new {@link SourceRoot} element. *Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Aug 29 12:47:20 UTC 2025 - 67K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
} @Override public String toString() { return function.toString(); } }; // TODO(dpb): Switch to future.transformSync when that exists (passing a throwing function). return derive(future.transformAsync(applyFunction, executor)); } /** * Returns a new {@code ClosingFuture} pipeline step derived from this one by applying a functionRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Sep 11 13:51:27 UTC 2025 - 96.9K bytes - Viewed (0) -
impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategyTest.java
Element modelVersionElement = DomUtils.findChildElement(root, "modelVersion"); if (expectedModelVersion != null) { assertNotNull(modelVersionElement, "Model version should exist: " + description); assertEquals( expectedModelVersion, modelVersionElement.textContentTrimmed(),Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 38.8K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java
* However, we don't expose currentFuture to users, so they can't attach listeners. And the * Future might not even be a ListenableFuture, just a plain Future. That said, similar * problems can exist with methods like FutureTask.done(), not to mention slow calls to * Thread.interrupt() (as discussed in InterruptibleTask). At the end of the day, it's
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 27.7K bytes - Viewed (0) -
cmd/object-handlers.go
w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(objInfo.DeleteMarker)} } QueueReplicationHeal(ctx, bucket, objInfo, 0) // do an additional verification whether object exists when object is deletemarker and request // is from replication if opts.CheckDMReplicationReady { topts := opts topts.VersionID = "" goi, gerr := getObjectInfo(ctx, bucket, object, topts)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 120.6K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.8.md
* Fixes issue for readOnly subpath mounts for SELinux systems and when the volume mountPath already existed in the container image. ([#64351](https://github.com/kubernetes/kubernetes/pull/64351), [@msau42](https://github.com/msau42))
Registered: Fri Dec 26 09:05:12 UTC 2025 - Last Modified: Tue Feb 20 15:45:02 UTC 2024 - 312.2K bytes - Viewed (0) -
cmd/erasure-object.go
} if err != nil && !isErrVersionNotFound(err) && !isErrObjectNotFound(err) { return objInfo, err } // if object doesn't exist return error for If-Match conditional requests // If-None-Match should be allowed to proceed for non-existent objects if err != nil && opts.HasIfMatch && (isErrObjectNotFound(err) || isErrVersionNotFound(err)) { return objInfo, err } }
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Oct 24 04:05:31 UTC 2025 - 80.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java
Interpolation nt = new Interpolation(fa, s -> profileActivationFilePathInterpolator.interpolate(s, context)); nt.performFor(fa.getExists(), "exists", fa::setExists); nt.performFor(fa.getMissing(), "missing", fa::setMissing); }); a.map(Activation::getOs).ifPresent(oa -> {Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sun Mar 30 23:08:08 UTC 2025 - 55.3K bytes - Viewed (0)