- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 706 for halted (0.04 sec)
-
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ReactorBuildStatus.java
} } } public void halt() { halted = true; } public boolean isHalted() { return halted; } public boolean isHaltedOrBlacklisted(MavenProject mavenProject) { return isBlackListed(mavenProject) || isHalted(); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/logging/LoggingExecutionListener.java
MavenSession session = projectExecutionEvent.getSession(); boolean halted; // The ReactorBuildStatus is only available if the SmartBuilder is used ReactorBuildStatus status = (ReactorBuildStatus) session.getRepositorySession().getData().get(ReactorBuildStatus.class); if (status != null) { halted = status.isHalted(); } else { // assume sensible default
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/logging/SimpleBuildEventListener.java
log(event); } @Override public void projectFinished(String projectId) {} @Override public void executionFailure(String projectId, boolean halted, String exception) {} @Override public void mojoStarted(ExecutionEvent event) {} @Override public void finish(int exitCode) throws Exception {} @Override
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/logging/BuildEventListener.java
void projectStarted(String projectId); void projectLogMessage(String projectId, String event); void projectFinished(String projectId); void executionFailure(String projectId, boolean halted, String exception); void mojoStarted(ExecutionEvent event); void finish(int exitCode) throws Exception; void fail(Throwable t) throws Exception; void log(String msg);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
shouldExecute = true; } else { // For regular steps: // Don't run for halted builds, blacklisted projects, or if predecessors failed shouldExecute = !status.isHalted() && !status.isBlackListed(step.project) && allPredecessorsExecuted; } // 2. Either schedule the step or mark it as skipped based on the decisionRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
`Take off your hat,' the King said to the Hatter. `It isn't mine,' said the Hatter. `Stolen!' the King exclaimed, turning to the jury, who instantly made a memorandum of the fact. `I keep them to sell,' the Hatter added as an explanation; `I've none of my own. I'm a hatter.' Here the Queen put on her spectacles, and began staring at the Hatter, who turned pale and fidgeted.
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 145.2K bytes - Viewed (0) -
cmd/erasure-metadata-utils.go
for _, disk := range disks { if disk == nil { continue } diskCount++ } return diskCount } // hashOrder - hashes input key to return consistent // hashed integer slice. Returned integer order is salted // with an input key. This results in consistent order. // NOTE: collisions are fine, we are not looking for uniqueness // in the slices returned. func hashOrder(key string, cardinality int) []int {Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 11.7K bytes - Viewed (0) -
docs/de/docs/advanced/advanced-dependencies.md
Die Absicht war, Ressourcen nicht länger als nötig zu halten, während darauf gewartet wird, dass die Response durchs Netzwerk reist. Diese Änderung bedeutete auch, dass bei Rückgabe einer `StreamingResponse` der Exit-Code der Abhängigkeit mit `yield` bereits ausgeführt worden wäre.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:32:56 UTC 2025 - 10.4K bytes - Viewed (0) -
docs/debugging/hash-set/main.go
sum64 := siphash.Hash(k0, k1, []byte(key)) return int(sum64 % uint64(cardinality)) } // hashOrder - hashes input key to return consistent // hashed integer slice. Returned integer order is salted // with an input key. This results in consistent order. // NOTE: collisions are fine, we are not looking for uniqueness // in the slices returned. func hashOrder(key string, cardinality int) []int {
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Mon Sep 19 18:05:16 UTC 2022 - 3.7K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashFunction.java
* <li><b>collision-averse:</b> while it can't be helped that a hash function will sometimes * produce the same hash code for distinct inputs (a "collision"), every hash function strives * to <i>some</i> degree to make this unlikely. (Without this condition, a function that * always returns zero could be called a hash function. It is not.) * </ul> *
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.9K bytes - Viewed (0)