Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 100 for MVN (0.02 sec)

  1. .travis/run.sh

    #!/bin/bash
    
    cd `dirname $0`
    cd ..
    BASE_DIR=`pwd`
    LOG_FILE=$BASE_DIR/test.log
    
    mvn test > $LOG_FILE 2>&1
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    tail -n1000 $LOG_FILE
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Feb 02 08:45:33 UTC 2019
    - 273 bytes
    - Viewed (0)
  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.
    
    If you have ktlint errors, you can automatically fix them by running `mvn com.github.gantsign.maven:ktlint-maven-plugin:1.1.1:format`.
    
    ## How the configuration works
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. apache-maven/src/assembly/maven/bin/.gitattributes

    mvn                eol=lf crlf=input
    mvnDebug           eol=lf crlf=input
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 111 bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/root/RootLocator.java

     *
     * The default implementation will look for a {@code .mvn} child directory
     * or a {@code pom.xml} containing the {@code root="true"} attribute.
     *
     * @see DefaultRootLocator
     */
    public interface RootLocator {
    
        String UNABLE_TO_FIND_ROOT_PROJECT_MESSAGE = "Unable to find the root directory. "
                + "Create a .mvn directory in the root directory or add the root=\"true\""
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. .mvn/readme.txt

    The .mvn directory is needed to be able to use the ${maven.multiModuleProjectDirectory} property....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jul 06 06:09:20 UTC 2021
    - 97 bytes
    - Viewed (0)
  6. .gitignore

    # Maven
    target/
    *.ser
    *.ec
    .mvn/wrapper/maven-wrapper.jar
    
    # IntelliJ Idea
    .idea/
    out/
    *.ipr
    *.iws
    *.iml
    
    # Eclipse
    .classpath
    .project
    .settings/
    .metadata/
    
    # OS X
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 16:57:55 UTC 2023
    - 176 bytes
    - Viewed (0)
  7. .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
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:58:02 UTC 2024
    - 602 bytes
    - Viewed (0)
  8. src/test/resources/run.sh

    #!/bin/bash
    
    touch $(ls -d ./fess-*/logs)/fess-crawler.log
    tail -f ./fess-*/logs/*.log &
    
    mvn test -P integrationTests -Dtest.fess.url="http://localhost:8080" -Dtest.search_engine.url="http://localhost:9201"
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find ./target -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 10 03:25:34 UTC 2024
    - 353 bytes
    - Viewed (0)
  9. .github/workflows/maven.yml

          with:
            path: ~/.m2/repository
            key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
            restore-keys: |
              ${{ runner.os }}-maven-
        - name: Build with Maven
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 822 bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_arm64.s

    	B	·Xchg64(SB)
    
    TEXT ·And8(SB), NOSPLIT, $0-9
    	MOVD	ptr+0(FP), R0
    	MOVB	val+8(FP), R1
    #ifndef GOARM64_LSE
    	MOVBU	internal∕cpu·ARM64+const_offsetARM64HasATOMICS(SB), R4
    	CBZ 	R4, load_store_loop
    #endif
    	MVN 	R1, R2
    	LDCLRALB	R2, (R0), R3
    	RET
    #ifndef GOARM64_LSE
    load_store_loop:
    	LDAXRB	(R0), R2
    	AND	R1, R2
    	STLXRB	R2, (R0), R3
    	CBNZ	R3, load_store_loop
    	RET
    #endif
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top