Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for m2 (0.16 sec)

  1. apache-maven/src/assembly/maven/bin/m2.conf

    set maven.conf default ${maven.home}/conf
    
    [plexus.core]
    load       ${maven.conf}/logging
    optionally ${maven.home}/lib/ext/redisson/*.jar
    optionally ${maven.home}/lib/ext/hazelcast/*.jar
    optionally ${user.home}/.m2/ext/*.jar
    optionally ${maven.home}/lib/ext/*.jar
    load       ${maven.home}/lib/maven-*.jar
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Oct 18 18:06:57 GMT 2023
    - 396 bytes
    - Viewed (0)
  2. internal/s3select/sql/timestampfuncs.go

    	duration := ts2.Sub(ts1)
    	y1, m1, d1 := ts1.Date()
    	y2, m2, d2 := ts2.Date()
    
    	switch timePart {
    	case timePartYear:
    		dy := int64(y2 - y1)
    		if m2 > m1 || (m2 == m1 && d2 >= d1) {
    			return FromInt(dy), nil
    		}
    		return FromInt(dy - 1), nil
    	case timePartMonth:
    		m1 += time.Month(12 * y1)
    		m2 += time.Month(12 * y2)
    
    		return FromInt(int64(m2 - m1)), nil
    	case timePartDay:
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Sun Jan 02 17:15:06 GMT 2022
    - 4.8K bytes
    - Viewed (0)
  3. .github/workflows/codeql-analysis.yml

          with:
            java-version: '17'
            distribution: 'temurin'
        - name: Cache Maven packages
          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 Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Feb 10 03:25:34 GMT 2024
    - 1K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            assertEquals(
                listOf(
                    "KILL_LEAKED_PROCESSES_FROM_PREVIOUS_BUILDS",
                    "GRADLE_RUNNER",
                    "KILL_PROCESSES_STARTED_BY_GRADLE",
                    "CHECK_CLEAN_M2_ANDROID_USER_HOME"
                ),
                steps.items.map(BuildStep::name)
            )
            assertEquals(expectedRunnerParam(), getGradleStep("GRADLE_RUNNER").gradleParams)
        }
    
        @ParameterizedTest
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/core/lang/GenericsUtilTest.java

            assertThat(GenericsUtil.isTypeOf(t1, List.class), is(true));
            assertThat(GenericsUtil.getElementTypeOfList(t1), is(sameClass(String.class)));
    
            final Method m2 = ListType.class.getMethod("listOfClass");
            final Type t2 = m2.getGenericReturnType();
            assertThat(GenericsUtil.isTypeOf(t2, List.class), is(true));
            assertThat(GenericsUtil.isTypeOf(GenericsUtil.getElementTypeOfList(t2), Class.class), is(true));
    
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/amd64enc.s

    	//TODO: PABSB (BX), M2                  // 0f381c13
    	//TODO: PABSB (R11), M2                 // 410f381c13
    	//TODO: PABSB M2, M2                    // 0f381cd2
    	//TODO: PABSB M3, M2                    // 0f381cd3
    	//TODO: PABSB (BX), M3                  // 0f381c1b
    	//TODO: PABSB (R11), M3                 // 410f381c1b
    	//TODO: PABSB M2, M3                    // 0f381cda
    Others
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 08 21:38:44 GMT 2021
    - 581.9K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/apache/apache/3/apache-3.pom

          <name>Apache Release Distribution Repository</name>
          <url>scp://people.apache.org/www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
        </repository>
        <snapshotRepository>
          <id>apache.snapshots</id>
          <name>Apache Development Snapshot Repository</name>
          <url>scp://people.apache.org/www/people.apache.org/repo/m2-snapshot-repository</url>
        </snapshotRepository>
      </distributionManagement>
      <mailingLists>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 3.3K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/common/extensions.kt

                    checkCleanDirWindows(
                        "%teamcity.agent.jvm.user.home%\\.android",
                        false
                    )
            } else {
                checkCleanDirUnixLike("%teamcity.agent.jvm.user.home%/.m2/repository") +
                    checkCleanDirUnixLike("%teamcity.agent.jvm.user.home%/.m2/.gradle-enterprise") +
                    checkCleanDirUnixLike("%teamcity.agent.jvm.user.home%/.m2/.develocity") +
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Apr 12 10:49:15 GMT 2024
    - 13K bytes
    - Viewed (0)
  9. .teamcity/mvnw

        fi
      done
    
      saveddir=`pwd`
    
      M2_HOME=`dirname "$PRG"`/..
    
      # make it fully qualified
      M2_HOME=`cd "$M2_HOME" && pwd`
    
      cd "$saveddir"
      # echo Using m2 at $M2_HOME
    fi
    
    # For Cygwin, ensure paths are in UNIX format before anything is touched
    if $cygwin ; then
      [ -n "$M2_HOME" ] &&
        M2_HOME=`cygpath --unix "$M2_HOME"`
      [ -n "$JAVA_HOME" ] &&
    Shell Script
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Feb 26 01:48:39 GMT 2020
    - 9.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/test/resources/settings-simple.xml

    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
    -->
    
    <settings>
      <localRepository>${user.home}/.m2/repository</localRepository>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 895 bytes
    - Viewed (0)
Back to top