- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 39 for kept (0.04 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt
else -> actualBranch } /** * The build environment. * * WARNING: Every val in here must not change for they same daemon. If it does, changes will go undetected, * since this whole object is kept in the classloader between builds. * Anything that changes must be in a val with a get() method that recomputes the value each time. */ object BuildEnvironment { /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 09 08:19:42 UTC 2024 - 4.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DebugResolutionListener.java
logger.debug(indent + artifact + " (selected for " + artifact.getScope() + ")"); } public void omitForNearer(Artifact omitted, Artifact kept) { String omittedVersion = omitted.getVersion(); String keptVersion = kept.getVersion(); if (!Objects.equals(omittedVersion, keptVersion)) { logger.debug(indent + omitted + " (removed - nearer found: " + keptVersion + ")"); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java
public void endProcessChildren(Artifact artifact) {} public void includeArtifact(Artifact artifact) {} public void omitForNearer(Artifact omitted, Artifact kept) {} public void omitForCycle(Artifact omitted) {} public void updateScopeCurrentPom(Artifact artifact, String scope) {} public void updateScope(Artifact artifact, String scope) {}
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ResolutionListener.java
void startProcessChildren(Artifact artifact); void endProcessChildren(Artifact artifact); void includeArtifact(Artifact artifact); void omitForNearer(Artifact omitted, Artifact kept); void updateScope(Artifact artifact, String scope); @Deprecated void manageArtifact(Artifact artifact, Artifact replacement); // TODO Use the following two instead of manageArtifact
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt
} } @Test fun `should not fail if some method was upgraded and not removed but marked as kept`() { checkBinaryCompatible( v1 = { withFile( "java/com/example/Task.java", """ package com.example;
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 02 14:20:08 UTC 2024 - 26.1K bytes - Viewed (0) -
docs/en/docs/deployment/versions.md
# About FastAPI versions **FastAPI** is already being used in production in many applications and systems. And the test coverage is kept at 100%. But its development is still moving quickly. New features are added frequently, bugs are fixed regularly, and the code is still continuously improving.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 25 02:44:06 UTC 2024 - 3.4K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/normalization/DefaultModelNormalizer.java
} /* * NOTE: This is primarily to keep backward-compat with Maven 2.x which did not validate that dependencies are * unique within a single POM. Upon multiple declarations, 2.x just kept the last one but retained the order of * the first occurrence. So when we're in lenient/compat mode, we have to deal with such broken POMs and mimic
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/Result.java
* <li>success with warnings - model field + non-error model problems * <li>error - no model, but diagnostics * <li>error - (partial) model and diagnostics * </ol> * Could encode these variants as subclasses, but kept in one for now * * @param <T> the model type * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class Result<T> { /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 6.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java
* sure that these (potentially overridden) methods are invoked only once, and instance created by those methods are * memorized and kept as long as supplier instance is kept open. * <p> * This class is not thread safe and must be used from one thread only, while the constructed {@link RepositorySystem} * is thread safe. * <p>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.6K bytes - Viewed (0) -
cmd/xl-storage-format-v1.go
BLAKE2b512 ) // DefaultBitrotAlgorithm is the default algorithm used for bitrot protection. const ( DefaultBitrotAlgorithm = HighwayHash256S ) // ObjectPartInfo Info of each part kept in the multipart metadata // file after CompleteMultipartUpload() is called. type ObjectPartInfo struct { ETag string `json:"etag,omitempty" msg:"e"` Number int `json:"number" msg:"n"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 8.4K bytes - Viewed (0)