Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for reloctab (0.25 sec)

  1. src/cmd/link/internal/ld/xcoff.go

    		}
    
    		if ldr.SymSect(symp) != nil {
    			xldr.Lrsecnm = f.getXCOFFscnum(ldr.SymSect(symp))
    		}
    
    		reloctab = append(reloctab, xldr)
    	}
    
    	off += uint64(16 * len(dynimpreloc))
    	reloctab = append(reloctab, dynimpreloc...)
    
    	hdr.Lnreloc = int32(len(reloctab))
    	hdr.Limpoff = off
    
    	/* Import */
    	// Default import: /usr/lib:/lib
    	ldimpf := &XcoffLdImportFile64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/groovy/build.gradle

                        entry.name.substring(0, name.lastIndexOf('/')).replace('/', '.')
                    }
                    .collect(Collectors.toSet())
            }
        }
    // tag::artifact-transform-relocate[]
    }
    // end::artifact-transform-relocate[]
    
    configurations.create("externalClasspath")
    
    def usage = Attribute.of('usage', String)
    def artifactType = Attribute.of('artifactType', String)
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/kotlin/build.gradle.kts

                        entry.name.substringBeforeLast('/').replace('/', '.')
                    }
                    .collect(Collectors.toSet())
            }
        }
    // tag::artifact-transform-relocate[]
    }
    // end::artifact-transform-relocate[]
    
    configurations.create("externalClasspath")
    
    val usage = Attribute.of("usage", String::class.java)
    val artifactType = Attribute.of("artifactType", String::class.java)
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenArtifactRelocationSource.java

        /**
         * Returns {@link Artifact} instance where to relocate to, or {@code null}.
         *
         * @param session The session, never {@code null}.
         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
         * @return The {@link Artifact} to relocate to, or {@code null} if no relocation wanted.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/nativeplatform/tasks/AbstractUnexportMainSymbolIntegrationTest.groovy

        }
    
        @ToBeFixedForConfigurationCache
        def "relocate _main symbol with main.<ext>"() {
            makeSingleProject()
            componentUnderTest.writeToProject(testDirectory)
    
            when:
            succeeds("unexport")
            then:
            assertMainSymbolIsNotExported(objectFile("build/relocated/main"))
        }
    
        @ToBeFixedForConfigurationCache
        def "relocate _main symbol with notMain.<ext>"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenArtifactRelocationSource.java

        /**
         * Returns {@link Artifact} instance where to relocate to, or {@code null}.
         *
         * @param session The session, never {@code null}.
         * @param result The artifact descriptor result, never {@code null}.
         * @param model The artifact model, never {@code null}.
         * @return The {@link Artifact} to relocate to, or {@code null} if no relocation wanted.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/SwiftXCTestIntegrationTest.groovy

    """
    
            when:
            succeeds("test")
    
            then:
            result.assertTasksExecuted(tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest", ":test")
            result.assertTasksSkipped(tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest", ":test")
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestWithApplicationIntegrationTest.groovy

        }
    
        @Override
        protected String[] getTasksToBuildAndRunUnitTest(String architecture) {
            return super.getTasksToBuildAndRunUnitTest(architecture) + tasks.withArchitecture(architecture).test.relocate
        }
    
        @Override
        protected String[] getTasksToCompileComponentUnderTest(String architecture) {
            def debugTasks = tasks.withArchitecture(architecture).debug
            return [debugTasks.compile]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/DirectorySnapshotTest.groovy

            ])
    
            when:
            def relocated = directorySnapshot.relocate(targetDir.absolutePath, stringInterner).get()
            def index = SnapshotUtil.indexByAbsolutePath(relocated)
    
            then:
            index.keySet() == [
                targetDir.absolutePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractFileSystemLeafSnapshotTest.groovy

            def targetFile = temporaryFolder.file("target.txt")
            def sourceSnapshot = createInitialRootNode(sourceFile.absolutePath, DIRECT)
    
            when:
            def targetSnapshot = sourceSnapshot.relocate(targetFile.absolutePath, stringInterner)
    
            then:
            targetSnapshot.present
            targetSnapshot.get().absolutePath == targetFile.absolutePath
            targetSnapshot.get().name == targetFile.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top