Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mvn (0.35 sec)

  1. .github/workflows/maven_build_itself.yml

            env:
              TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    
          - name: Clean with Maven
            run: mvn clean
    
          - name: Build again with Maven SNAPSHOT
            shell: bash
            run: |
              set +e
              export PATH=${{ env.TEMP_MAVEN_BIN_DIR }}:$PATH
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

            with:
              path: maven/
              persist-credentials: false
    
          - name: Build Maven
            run: mvn install -e -B -V -DdistributionFileName=apache-maven -DskipTests -f maven/pom.xml
    
          - name: Running integration tests
            shell: bash
            run: mvn install -e -B -V -Prun-its,embedded -DmavenDistro="$GITHUB_WORKSPACE/maven/apache-maven/target/apache-maven-bin.zip" -f maven-integration-testing/pom.xml
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/arm.s

    // MVN
    	MVN	$0xff, R1        // MVN $255, R1          // ff10e0e3
    	MVN	$0xff000000, R1  // MVN $4278190080, R1   // ff14e0e3
    	MVN	R9<<30, R7       // 097fe0e1
    	MVN	R9>>30, R7       // 297fe0e1
    	MVN	R9->30, R7       // 497fe0e1
    	MVN	R9@>30, R7       // 697fe0e1
    	MVN.S	R9<<30, R7       // 097ff0e1
    	MVN.S	R9>>30, R7       // 297ff0e1
    	MVN.S	R9->30, R7       // 497ff0e1
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 15 20:51:01 GMT 2023
    - 69K bytes
    - Viewed (0)
  4. .github/workflows/maven.yml

        steps:
        - uses: actions/checkout@v2
        - name: Set up JDK 17
          uses: actions/setup-java@v2
          with:
            java-version: '17'
            distribution: 'temurin'
        - name: Build with Maven
    Others
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 602 bytes
    - Viewed (0)
  5. .github/workflows/codeql-analysis.yml

          uses: actions/cache@v4
          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
            restore-keys: ${{ runner.os }}-m2
        - name: Build with Maven
          run: mvn -B package --file pom.xml
    
        - name: Perform CodeQL Analysis
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1K bytes
    - Viewed (0)
  6. .github/workflows/maven.yml

            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Download Plugins with Maven
          run: mvn -B antrun:run --file pom.xml
        - name: Build with Maven
          run: mvn -B source:jar javadoc:jar package --file pom.xml
        - name: Run Fess
          run: bash src/test/resources/before_script.sh
        - name: Run Integration Test
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	MSUB R19, R16, R26, R2                     // 42c3139b
    	MULW R26, R5, R22                          // b67c1a1b
    	MUL R4, R3, R0                             // 607c049b
    	MVNW R3@>13, R8                            // e837e32a
    	MVN R13>>31, R9                            // e97f6daa
    	NEGSW R23<<1, R30                          // fe07176b
    	NEGS R20>>35, R22                          // f68f54eb
    	NGCW R13, R8                               // e8030d5a
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Jul 24 01:11:41 GMT 2023
    - 43.9K bytes
    - Viewed (1)
Back to top