- Sort Score
- Num 10 results
- Language All
Results 301 - 310 of 597 for cleanUp (0.05 seconds)
-
util/deploy_snapshot.sh
#!/bin/bash # see https://coderwall.com/p/9b_lfq set -e -u function mvn_deploy() { ./mvnw clean deploy -DskipTests=true "$@" } echo "Publishing Maven snapshot..." mvn_deploy mvn_deploy -f android/pom.xml
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Oct 16 20:48:20 GMT 2023 - 245 bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java
import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.component.repository.exception.ComponentLookupException; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.CLEAN; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.COMPILE; import static org.apache.maven.lifecycle.internal.stub.LifecycleExecutionPlanCalculatorStub.INITIALIZE;
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 4.5K bytes - Click Count (0) -
build-logic/build.gradle.kts
tasks.register("check") { dependsOn(subprojects.map { "${it.name}:check" }) } tasks.register("test") { dependsOn(subprojects.map { "${it.name}:test" }) } val clean by tasks.registering { val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties") val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties") doLast {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 1.2K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/SourcesRepository.kt
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Apr 28 14:56:52 GMT 2025 - 4.1K bytes - Click Count (0) -
cmd/untar.go
return fmt.Errorf("tar file error: %w%s", err, extra) // if the header is nil, just skip it (not sure how this happens) case header == nil: continue } name := header.Name switch path.Clean(name) { case ".", slashSeparator: continue } switch header.Typeflag { case tar.TypeDir: // = directory if o.ignoreDirs { continue }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Feb 18 16:25:55 GMT 2025 - 6K bytes - Click Count (2) -
.teamcity/README.md
## Develop and verify After you make a change, you can run `mvn clean teamcity-configs:generate` to generate and verify the generated TeamCity configuration XMLs. You also need to run `mvn clean verify` with Java 8 before committing changes.
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Mar 06 23:02:25 GMT 2024 - 4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/ContainerCapsule.java
@Nonnull Lookup getLookup(); /** * The TCCL, if implementation requires it. */ @Nonnull Optional<ClassLoader> currentThreadClassLoader(); /** * Performs a clean shutdown of backing container. */ @Override void close() throws Exception;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 31 20:56:58 GMT 2025 - 1.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt
param("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%") } steps { gradleWrapper { name = "Publish Kotlin DSL Plugin" tasks = "clean :kotlin-dsl-plugins:publishPlugins" } }
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Feb 19 08:02:04 GMT 2025 - 1.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java
int newValue = max(0, oldValue - occurrences); if (existingCounter.compareAndSet(oldValue, newValue)) { if (newValue == 0) { // Just CASed to 0; remove the entry to clean up the map. If the removal fails, // another thread has already replaced it with a new counter, which is fine. countMap.remove(element, existingCounter); } return oldValue;
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Dec 08 22:42:14 GMT 2025 - 22.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt
} steps { script { name = "RUN_MAVEN_CLEAN_VERIFY" scriptContent = "./mvnw clean verify -Dmaven.repo.local=../build -Dscan.value.gitCommitId=%build.vcs.number% -Dscan.tag.CI" workingDir = ".teamcity" } script { name = "CLEAN_M2"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Jul 31 01:53:09 GMT 2025 - 1.9K bytes - Click Count (0)