Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for MVN (0.07 sec)

  1. README.md

    Quick Build
    -------
    If you want to bootstrap Maven, you'll need:
    - Java 17+
    - Maven 3.6.3 or later
    - Run Maven, specifying a location into which the completed Maven distro should be installed:
        ```
        mvn -DdistributionTargetDir="$HOME/app/maven/apache-maven-4.0.x-SNAPSHOT" clean package
        ```
    
    
    [home]: https://maven.apache.org/
    [jira]: https://issues.apache.org/jira/projects/MNG/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

    import java.util.LinkedList
    
    const val MASTER_CHECK_CONFIGURATION = "Gradle_Master_Check"
    const val MAX_PROJECT_NUMBER_IN_BUCKET = 11
    
    /**
     * Process test-class-data.json and generates test-buckets.json
     *
     * Usage: `mvn compile exec:java@update-test-buckets -DinputTestClassDataJson=/path/to/test-class-data.json`.
     * You can get the JSON file as an artifacts of the "autoUpdateTestSplitJsonOnGradleMaster" pipeline in TeamCity.
     */
    fun main() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                    return projects;
                } else {
                    LOGGER.debug(
                            "Multi module project collection failed:{}"
                                    + "Detected a POM file next to a .mvn directory in a parent directory ({}). "
                                    + "Maven assumed that POM file to be the parent of the requested project ({}), but it turned "
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/MultiThreadedBuilder.java

                        ? project.getGroupId() + ":" + project.getArtifactId()
                        : project.getArtifactId();
                currentThread.setName("mvn-builder-" + threadNameSuffix);
    
                try {
                    // muxer.associateThreadWithProjectSegment( projectBuild );
                    lifecycleModuleBuilder.buildProject(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/configuration/SettingsXmlConfigurationProcessor.java

        public static final File DEFAULT_USER_SETTINGS_FILE = new File(USER_MAVEN_CONFIGURATION_HOME, "settings.xml");
    
        public static final File DEFAULT_PROJECT_SETTINGS_FILE = new File(".mvn", "settings.xml");
    
        public static final File DEFAULT_GLOBAL_SETTINGS_FILE = new File(System.getProperty("maven.conf"), "settings.xml");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. apache-maven/pom.xml

              <configuration>
                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
                  <exclude>src/assembly/shared/mvnlauncher</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. test/codegen/rotate.go

    	// arm64: "ORR\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[5] = a[4] | bits.RotateLeft64(a[3], 13)
    	// arm64: "EOR\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[8] = a[7] ^ bits.RotateLeft64(a[6], 13)
    	// arm64: "MVN\tR[0-9]+@>51, R[0-9]+"
    	a[10] = ^bits.RotateLeft64(a[9], 13)
    	// arm64: "BIC\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    	a[13] = a[12] &^ bits.RotateLeft64(a[11], 13)
    	// arm64: "EON\tR[0-9]+@>51, R[0-9]+, R[0-9]+"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. src/crypto/sha1/sha1block_arm.s

    	EOR	Rt2, Rt0, Rt0  ; \
    	EOR	Rt0, Rt1, Rt0  ; \
    	MOVW	Rt0@>(32-1), Rt0  ; \
    	MOVW.P	Rt0, 4(Rw)	  ; \
    	ADD	Rt0, Re, Re
    
    	// t1 = (b & c) | ((~b) & d)
    #define FUNC1(Ra, Rb, Rc, Rd, Re) \
    	MVN	Rb, Rt1	   ; \
    	AND	Rb, Rc, Rt0  ; \
    	AND	Rd, Rt1, Rt1 ; \
    	ORR	Rt0, Rt1, Rt1
    
    	// t1 = b ^ c ^ d
    #define FUNC2(Ra, Rb, Rc, Rd, Re) \
    	EOR	Rb, Rc, Rt1 ; \
    	EOR	Rd, Rt1, Rt1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (AND x x) => x
    (OR  x x) => x
    (XOR x x) => (MOVDconst [0])
    (BIC x x) => (MOVDconst [0])
    (EON x x) => (MOVDconst [-1])
    (ORN x x) => (MOVDconst [-1])
    (AND x (MVN y)) => (BIC x y)
    (XOR x (MVN y)) => (EON x y)
    (OR  x (MVN y)) => (ORN x y)
    (MVN (XOR x y)) => (EON x y)
    (NEG (NEG x)) => x
    
    (CSEL [cc] (MOVDconst [-1]) (MOVDconst [0]) flag) => (CSETM [cc] flag)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoDescriptorCreator.java

                    goal = "";
                }
    
                // This is the case where someone has executed a single goal from the command line
                // of the form:
                //
                // mvn remote-resources:process
                //
                // From the metadata stored on the server which has been created as part of a standard
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top