Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for reloctab (0.12 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/groovy/settings.gradle

    rootProject.name = 'artifact-transforms-relocate'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-relocate/kotlin/settings.gradle.kts

    rootProject.name = "artifact-transforms-relocate"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  3. src/internal/pkgbits/encoder.go

    	}
    
    	w.rawUvarint(ux)
    }
    
    func (w *Encoder) rawReloc(r RelocKind, idx Index) int {
    	e := RelocEnt{r, idx}
    	if w.RelocMap != nil {
    		if i, ok := w.RelocMap[e]; ok {
    			return int(i)
    		}
    	} else {
    		w.RelocMap = make(map[RelocEnt]uint32)
    	}
    
    	i := len(w.Relocs)
    	w.RelocMap[e] = uint32(i)
    	w.Relocs = append(w.Relocs, e)
    	return i
    }
    
    func (w *Encoder) Sync(m SyncMarker) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 10 23:26:58 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestWithApplicationDependenciesIntegrationTest.groovy

        @Override
        protected String getProductionComponentDsl() {
            return "application"
        }
    
        @Override
        protected List<String> getRunTestTasks() {
            return [tasks.debug.compile, tasks.test.relocate, tasks.test.allToInstall, ":xcTest"]
        }
    
        @Override
        protected List<String> getLibDebugTasks() {
            return [tasks(":lib").debug.allToLink]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/InterpreterTest.kt

                } doAnswer {
    
                    val location = it.getArgument<File>(3)
                    val className = it.getArgument<String>(4)
    
                    val newLocation = relocate(location)
    
                    DummyCompiledScript(
                        classLoaderFor(newLocation)
                            .also { classLoaders += it }
                            .loadClass(className)
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    In order to determine the classes to relocate, it looks at the packages of the input artifact and the dependencies of the input artifact.
    It also does not relocate packages contained in JAR files in an external classpath.
    
    .Artifact transform for class relocation
    ====
    include::sample[dir="snippets/dependencyManagement/artifactTransforms-relocate/kotlin",files="build.gradle.kts[tags=artifact-transform-relocate]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

            return absolutePath;
        }
    
        @Override
        public String getName() {
            return name;
        }
    
        @Override
        public Optional<? extends FileSystemLocationSnapshot> relocate(String targetPath, Interner<String> interner) {
            if (accessType == AccessType.VIA_SYMLINK) {
                return Optional.empty();
            }
            String internedTargetPath = interner.intern(targetPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemLocationSnapshot.java

         * - re-snapshot relocated locations pointed to by snapshots,
         * - a combination of the two.
         */
        Optional<? extends FileSystemLocationSnapshot> relocate(String targetPath, Interner<String> interner);
    
        /**
         * The hash of the snapshot.
         *
         * This makes it possible to uniquely identify the snapshot.
         * <dl>
         *     <dt>Directories</dt>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 15:09:45 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/tasks/CppUnexportMainSymbolIntegrationTest.groovy

        @RequiresInstalledToolChain(ToolChainRequirement.VISUALCPP)
        @Issue("https://github.com/gradle/gradle-native/issues/277")
        @ToBeFixedForConfigurationCache
        def "can relocate Windows specific _wmain symbol"() {
            makeSingleProject()
            file("src/main/cpp/main.cpp") << """
                #include <iostream>
    
                int wmain(int argc, wchar_t *argv[], wchar_t *envp[] ) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/runtimeshaded/RuntimeShadedJarCreator.java

                            if (literal == null) {
                                // tries to relocate literals in the form of foo/bar/Bar
                                literal = remapper.maybeRelocateResource((String) cst);
                            }
                            if (literal == null) {
                                // tries to relocate literals in the form of foo.bar.Bar
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.6K bytes
    - Viewed (0)
Back to top