Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

     *   </li>
     * <li>a hyphen usually precedes a qualifier, and is always less important than digits/number, for example
     *   {@code 1.0.RC2 < 1.0-RC3 < 1.0.1}; but prefer {@code 1.0.0-RC1} over {@code 1.0.0.RC1}, and more
     *   generally: {@code 1.0.X2 < 1.0-X3 < 1.0.1} for any string {@code X}; but prefer {@code 1.0.0-X1}
     *   over {@code 1.0.0.X1}.</li>
     * </ul>
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. plugin/pkg/admission/gc/gc_admission_test.go

    	}
    
    	getFalseVar := func() *bool {
    		ret := false
    		return &ret
    	}
    	blockRC1 := metav1.OwnerReference{
    		APIVersion:         "v1",
    		Kind:               "ReplicationController",
    		Name:               "rc1",
    		BlockOwnerDeletion: getTrueVar(),
    	}
    	blockRC2 := metav1.OwnerReference{
    		APIVersion:         "v1",
    		Kind:               "ReplicationController",
    		Name:               "rc2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_4x.md

        these in logs, metrics, and even test cases to confirm your cache headers are configured as
        expected.
    
     *  New: Constant string `okhttp3.VERSION`. This is a string like "4.5.0-RC1", "4.5.0", or
        "4.6.0-SNAPSHOT" indicating the version of OkHttp in the current runtime. Use this to include
        the OkHttp version in custom `User-Agent` headers.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 17 13:25:31 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    2.0-beta-2-SNAPSHOT maven-deploy-plugin 2.0-beta-1 true true maven-install-plugin 2.0-beta-2-SNAPSHOT maven-jar-plugin 2.0-rc2-SNAPSHOT maven-javadoc-plugin 2.0-beta-2-SNAPSHOT attach-javadocs jar true maven-resources-plugin 2.0-beta-2 maven-source-plugin 2.0-rc1 attach-sources jar true maven-surefire-plugin 2.0-beta-2-SNAPSHOT false snapshots Maven Central Development Repository http://snapshots.maven.codehaus.org/maven2 false central Maven Repository Switchboard http://www.ibiblio.org/maven2 false snapshots...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            assertEquals(c1, c2, "reused instance should be equivalent to new instance");
        }
    
        /**
         * Test <a href="https://issues.apache.org/jira/browse/MNG-7644">MNG-7644</a> edge cases
         * 1.0.0.RC1 &lt; 1.0.0-RC2 and more generally:
         * 1.0.0.X1 &lt; 1.0.0-X2 for any string X
         */
        @Test
        void testMng7644() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jan 09 06:39:47 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     * dependencies {
     *   //for dependencies found in artifact repositories you can use
     *   //the group:name:version notation
     *   implementation 'commons-lang:commons-lang:2.6'
     *   testImplementation 'org.mockito:mockito:1.9.0-rc1'
     *
     *   //map-style notation:
     *   implementation group: 'com.google.code.guice', name: 'guice', version: '1.0'
     *
     *   //declaring arbitrary files as dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenDynamicResolveIntegrationTest.groovy

            repo.getModuleMetaData('group', 'projectA').expectGet()
    
            repo.module('group', 'projectA', '1.5-SNAPSHOT').publish().allowAll()
            repo.module('group', 'projectA', '1.5-RC1').publish().allowAll()
    
            buildFile << createBuildFile(repo.uri)
    
            when:
            succeeds 'retrieve'
    
            then:
            file('libs').assertHasDescendants('projectA-1.5-SNAPSHOT.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

            given:
            def projectA = publishModule("group", "projectA", "1.0-SNAPSHOT")
            publishModule("group", "projectA", "1.0-RC1")
    
            buildFile << """
    dependencies {
        compile "group:projectA:1.0-SNAPSHOT"
        compile "group:projectA:1.0-RC1"
    }
    
    task retrieve(type: Sync) {
        into 'libs'
        from configurations.compile
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  9. CHANGELOG.md

     *  New: Support OSGi metadata.
     *  Upgrade: [Okio 2.9.0][okio_2_9_0].
    
        ```kotlin
        implementation("com.squareup.okio:okio:2.9.0")
        ```
    
    Note that this was originally released on 2020-10-06 as 4.10.0-RC1. The only change from that
    release is the version name.
    
    
    [Ktor]: https://ktor.io/
    [assertk]: https://github.com/willowtreeapps/assertk
    [graalvm]: https://www.graalvm.org/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top