Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for MVN (0.03 sec)

  1. .github/workflows/maven_build_itself.yml

          - uses: actions/setup-java@v4
            with:
              java-version: ${{ matrix.java }}
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build with Maven
            run: ./mvnw install -e -B -V -DdistributionFileName=apache-maven
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. .github/workflows/maven.yml

          - uses: actions/setup-java@v4
            with:
              java-version: 17
              distribution: 'temurin'
              cache: 'maven'
    
          - name: Set up Maven
            run:
              mvn --errors --batch-mode --show-version org.apache.maven.plugins:maven-wrapper-plugin:3.3.2:wrapper "-Dmaven=3.9.7"
    
          - name: Build with Maven
            run: ./mvnw verify -e -B -V -DdistributionFileName=apache-maven
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. test/codegen/bits.go

    	return x &^ y
    }
    
    func op_eon(x, y, z uint32, a []uint32, n, m uint64) uint64 {
    	// arm64:`EON\t`,-`EOR`,-`MVN`
    	a[0] = x ^ (y ^ 0xffffffff)
    
    	// arm64:`EON\t`,-`EOR`,-`MVN`
    	a[1] = ^(y ^ z)
    
    	// arm64:`EON\t`,-`XOR`
    	a[2] = x ^ ^z
    
    	// arm64:`EON\t`,-`EOR`,-`MVN`
    	return n ^ (m ^ 0xffffffffffffffff)
    }
    
    func op_orn(x, y uint32) uint32 {
    	// arm64:`ORN\t`,-`ORR`
    	return x | ^y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/exception/DefaultExceptionHandlerTest.java

    /**
     */
    class DefaultExceptionHandlerTest {
        /**
         * Running Maven under JDK7 may cause connection issues because IPv6 is used by default.
         * <p>
         * e.g running mvn site:run will cause Jetty to fail.
         * </p>
         * <p>
         * The resolution is to add -Djava.net.preferIPv4Stack=true to the command line as documented in
         * http://cwiki.apache.org/confluence/display/MAVEN/ConnectException
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. pom.xml

        <maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
        <maven.baseline>3.8.8</maven.baseline>
        <!-- Control the name of the distribution and information output by mvn -->
        <distributionId>apache-maven</distributionId>
        <distributionShortName>Maven</distributionShortName>
        <distributionName>Apache Maven</distributionName>
        <maven.site.path>ref/4-LATEST</maven.site.path>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  6. android/pom.xml

                    <!-- https://github.com/google/error-prone/blob/f8e33bc460be82ab22256a7ef8b979d7a2cacaba/docs/installation.md#jdk-16 -->
                    <!-- TODO(cpovirk): Use .mvn/jvm.config instead (per
                         https://errorprone.info/docs/installation#maven) if it can
                         be made not to interfere with JDK8 or if we stop building
                         with JDK8. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pom.xml

                    <!-- https://github.com/google/error-prone/blob/f8e33bc460be82ab22256a7ef8b979d7a2cacaba/docs/installation.md#jdk-16 -->
                    <!-- TODO(cpovirk): Use .mvn/jvm.config instead (per
                         https://errorprone.info/docs/installation#maven) if it can
                         be made not to interfere with JDK8 or if we stop building
                         with JDK8. -->
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                return true;
            }
        }
    
        private boolean isValidProfileId(String id) {
            switch (id.charAt(0)) { // avoid first character that has special CLI meaning in "mvn -P xxx"
                case '+': // activate
                case '-': // deactivate
                case '!': // deactivate
                case '?': // optional
                    return false;
                default:
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. RELEASE.md

    *   Moved `bayesflow.special_math` to distributions.
    *   `tf.contrib.tensor_forest.python.tensor_forest.RandomForestDeviceAssigner`
        removed.
    *   Changed some MVN classes and parameters:
        *   `tf.contrib.distributions.MultivariateNormalFull` replaced by
            `tf.contrib.distributions.MultivariateNormalTriL`.
        *   `tf.contrib.distributions.MultivariateNormalCholesky` replaced by
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top