Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 727 for reallocation (0.23 sec)

  1. src/debug/elf/testdata/go-relocation-test-gcc540-mips.obj

    Vladimir Stefanovic <******@****.***> 1476827448 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 22:38:25 UTC 2016
    - 3K bytes
    - Viewed (0)
  2. maven-model/src/test/java/org/apache/maven/model/RelocationTest.java

    /**
     * Tests {@code Relocation}.
     *
     */
    class RelocationTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Relocation().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Relocation().equals(null));
    
            new Relocation().equals(new Relocation());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

                            isAny(relocation.target.getClassifier()) ? null : relocation.target.getClassifier(),
                            isAny(relocation.target.getExtension()) ? null : relocation.target.getExtension(),
                            isAny(relocation.target.getVersion()) ? null : relocation.target.getVersion(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/DistributionManagementArtifactRelocationSource.java

            if (distMgmt != null) {
                Relocation relocation = distMgmt.getRelocation();
                if (relocation != null) {
                    Artifact result = new RelocatedArtifact(
                            artifactDescriptorResult.getRequest().getArtifact(),
                            relocation.getGroupId(),
                            relocation.getArtifactId(),
                            null,
                            null,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. src/debug/elf/testdata/go-relocation-test-gcc492-arm.obj

    Dave Cheney <******@****.***> 1425976757 +1100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 11 01:37:57 UTC 2015
    - 2.6K bytes
    - Viewed (0)
  6. src/debug/elf/testdata/go-relocation-test-gcc492-mips64.obj

    Yao Zhang <******@****.***> 1441890919 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 12 04:50:32 UTC 2015
    - 4K bytes
    - Viewed (0)
  7. src/debug/elf/testdata/go-relocation-test-gcc620-sparc64.obj

    James Clarke <******@****.***> 1476209325 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 21:52:37 UTC 2016
    - 5.8K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

                            isAny(relocation.target.getClassifier()) ? null : relocation.target.getClassifier(),
                            isAny(relocation.target.getExtension()) ? null : relocation.target.getExtension(),
                            isAny(relocation.target.getVersion()) ? null : relocation.target.getVersion(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/plugins/customPlugin/groovy/consumer/settings.gradle

    // tag::use-plugin[]
    pluginManagement {
        repositories {
            maven {
    // end::use-plugin[]
                def repoLocation = "../$producerName/build/repo"
    // tag::use-plugin[]
                url = uri(repoLocation)
            }
        }
    // end::use-plugin[]
    // tag::use-legacy-plugin[]
        resolutionStrategy {
            eachPlugin {
                if (requested.id.namespace == 'org.example') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 592 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/maven-publish/specify-relocation/kotlin/library/build.gradle.kts

            }
        }
    }
    
    dependencies {
        api("org.slf4j:slf4j-api:1.7.10")
    }
    
    // tag::specify-relocation[]
    publishing {
        publications {
            // ... artifact publications
    
            // Specify relocation POM
            create<MavenPublication>("relocation") {
                pom {
                    // Old artifact coordinates
                    groupId = "com.example"
                    artifactId = "lib"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top