- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 620 for clonan (0.09 sec)
-
impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java
request.setPluginGroups(settings.getPluginGroups()); request.setLocalRepositoryPath(settings.getLocalRepository()); for (Server server : settings.getServers()) { server = server.clone(); request.addServer(server); } // <proxies> // <proxy> // <active>true</active> // <protocol>http</protocol>Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 8.4K bytes - Viewed (0) -
apache-maven/pom.xml
<plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <executions> <execution> <id>clean-target-dir</id> <goals> <goal>clean</goal> </goals> <phase>prepare-package</phase> <configuration>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Nov 10 03:14:05 UTC 2025 - 12.7K bytes - Viewed (0) -
CLAUDE.md
# Generate DBFlute source code (when schema changes) mvn dbflute:download # One-time setup mvn dbflute:freegen mvn license:format ``` ### Build ```bash # Standard build mvn package # Clean build mvn clean package # Build distribution packages mvn rpm:rpm # .rpm package mvn jdeb:jdeb # .deb package ``` ### Testing ```bash # Run unit tests (*Test.java) mvn test
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
this.salt = salt != null ? salt.clone() : new byte[0]; this.hashAlgorithm = hashAlgorithm; this.currentHash = new byte[HASH_SIZE_SHA512]; // Initialize with zeros this.isValid = true; } public byte[] getSalt() { return salt.clone(); } public int getHashAlgorithm() { return hashAlgorithm;
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/AboutTheStubs.html
ProjectDependencyGraphStub Since they define the primary structure of the project/build. The stubs define three top-level targets that are defined in LifecycleTaskSegmentCalculatorStub; clean, aggr and install. "aggr" is an aggregating task while clean and install are lifecyclephases. There will be three items in the task list for this dataset.
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/test/remote-repo/org/apache/maven/plugins/maven-clean-plugin/maven-metadata.xml
<?xml version="1.0" encoding="UTF-8"?> <metadata> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clean-plugin</artifactId> <version>0.1</version> <versioning> <latest>0.1</latest> <release>0.1</release> <versions> <version>0.1</version> </versions> <lastUpdated>20091023224342</lastUpdated> </versioning>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 368 bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelUpgradeStrategy.java
private Map<String, String> createPhaseUpgradeMap() { Map<String, String> phaseUpgrades = new HashMap<>(); // Clean lifecycle aliases phaseUpgrades.put("pre-clean", Lifecycle.BEFORE + Lifecycle.Phase.CLEAN); phaseUpgrades.put("post-clean", Lifecycle.AFTER + Lifecycle.Phase.CLEAN); // Default lifecycle aliases
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Tue Nov 18 18:03:26 UTC 2025 - 16.6K bytes - Viewed (0) -
okcurl/README.md
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Sat Jul 19 08:48:55 UTC 2025 - 261 bytes - Viewed (0) -
maven-tests/mvnw
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Sep 25 18:22:49 UTC 2025 - 10.4K bytes - Viewed (0) -
internal/s3select/sql/statement.go
} var kvs jstream.KVS switch v := txedRec.(type) { case jstream.KVS: kvs = v case []any: recs := make([]*Record, len(v)) for i, val := range v { tmpRec := input.Clone(nil) if err = tmpRec.Replace(val); err != nil { return nil, err } recs[i] = &tmpRec } return recs, nil default: kvs = jstream.KVS{jstream.KV{Key: "_1", Value: v}} }Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 9K bytes - Viewed (0)