- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 1,027 for effect (0.07 sec)
-
apache-maven/src/assembly/maven/conf/settings.xml
| | Default: true <interactiveMode>true</interactiveMode> --> <!-- offline | Determines whether maven should attempt to connect to the network when executing a build. | This will have an effect on artifact downloads, artifact deployment, and others. | | Default: false <offline>false</offline> --> <!-- pluginGroups
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Oct 24 15:53:41 UTC 2024 - 11.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Table.java
@CanIgnoreReturnValue @CheckForNull V put(@ParametricNullness R rowKey, @ParametricNullness C columnKey, @ParametricNullness V value); /** * Copies all mappings from the specified table to this table. The effect is equivalent to calling * {@link #put} with each row key / column key / value mapping in {@code table}. * * @param table the table to add to this table */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Jun 17 14:40:53 UTC 2023 - 10.7K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
/** * @deprecated rawModel is never set, instead the fileModel is set */ @Deprecated Model getRawModel(); /** * @deprecated setting the rawModel has no effect, instead the fileModel of phase one will be set */ @Deprecated ModelBuildingRequest setRawModel(Model rawModel); /** * Gets the source of the POM to process. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 14.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/DefaultMaven.java
allOptionalSelectors.addAll(projectActivation.getRequiredActiveProjectSelectors()); // We intentionally ignore the results of this method. // As a side effect it will log the optional projects that could not be resolved. projectSelector.getOptionalProjectsBySelectors(request, session.getAllProjects(), allOptionalSelectors); } /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 27.5K bytes - Viewed (1) -
docs/bucket/replication/DESIGN.md
replication, there is potential for duplicate delete markers to be created if both source and target concurrently set a Delete Marker or if one/both of the clusters went down at tandem before the replication event was synced.This is an unavoidable side-effect in active-active replication caused by allowing delete markers set on a object version with `REPLICA` status back to source. In the case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id` on a object,...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Sep 29 04:28:45 UTC 2022 - 14.7K bytes - Viewed (0) -
tensorflow/c/c_api.h
// an operation using the function's name. // Any changes to `func`/`grad` (including deleting it) done after this method // returns, won't affect the copy of `func`/`grad` in `g`. // If `func` or `grad` are already in `g`, TF_GraphCopyFunction has no // effect on them, but can establish the function->gradient relationship // between them if `func` does not already have a gradient. If `func` already
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 26 21:08:15 UTC 2023 - 82.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
* Adds the specified managed dependency. * * @param managedDependency The managed dependency to add, may be {@code null} in which case the call * will have no effect. * @return this request for chaining, never {@code null} */ @Nonnull public DependencyResolverRequestBuilder managedDependency(@Nullable DependencyCoordinates managedDependency) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 17.9K bytes - Viewed (0) -
docs/em/docs/contributing.md
🚥 👆 ❎ 🏎 ✳, 👆 💪 ❎ 🛠️ ⏮️: <div class="termy"> ```console $ typer --install-completion zsh completion installed in /home/user/.bashrc. Completion will take effect once you restart the terminal. ``` </div> ### 📱 & 🩺 🎏 🕰 🚥 👆 🏃 🖼 ⏮️, ✅: <div class="termy"> ```console $ uvicorn tutorial001:app --reload
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 11.4K bytes - Viewed (0) -
istioctl/pkg/precheck/precheck.go
} } return messages, nil } func checkTracing(cli kube.CLIClient, messages *diag.Messages) error { // In 1.22, we remove the default tracing config which points to zipkin.istio-system // This has no effect for users, unless they have this service. svc, err := cli.Kube().CoreV1().Services("istio-system").Get(context.Background(), "zipkin", metav1.GetOptions{}) if err != nil && !kerrors.IsNotFound(err) { return err }
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 02:31:32 UTC 2024 - 15.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java
rateLimiter.setRate(2.0); // update the rate! rateLimiter.acquire(1); // R1.00, to repay previous (the previous was under the old rate!) rateLimiter.acquire(2); // R0.50, to repay previous (now the rate takes effect) rateLimiter.acquire(4); // R1.00, to repay previous rateLimiter.acquire(1); // R2.00, to repay previous assertEvents("R0.00", "R1.00", "R1.00", "R0.50", "R1.00", "R2.00"); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 14:28:19 UTC 2024 - 21.8K bytes - Viewed (0)