Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for moduledata (0.15 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/ModelData.java

     * processing by providing a means to transport information that cannot be (easily) extracted from the model itself.
     */
    record ModelData(ModelSource source, Model model) {
    
        /**
         * Gets unique identifier of the model
         *
         * @return The effective identifier of the model, never {@code null}.
         */
        public String id() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    }
    
    // fixZeroSizedSymbols gives a few special symbols with zero size some space.
    func fixZeroSizedSymbols(ctxt *Link) {
    	// The values in moduledata are filled out by relocations
    	// pointing to the addresses of these special symbols.
    	// Typically these symbols have no size and are not laid
    	// out with their matching section.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

         * modulepath and attempts to discover the modules which are already present.
         */
        private AdditionalClasspath filterAdditionalClasspath(Iterable<? extends File> classpath, Iterable<? extends File> modulepath, AdditionalClasspath unfiltered) {
            AdditionalClasspath fastFiltered = filterFast(classpath, modulepath, unfiltered);
    
            if (fastFiltered.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/JvmTestExecutionSpec.java

            this.testFramework = testFramework;
            this.classpath = classpath;
            this.modulePath = modulePath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpArtifact.groovy

    import org.gradle.test.fixtures.resource.RemoteArtifact
    
    abstract class HttpArtifact extends HttpResource implements RemoteArtifact {
        String modulePath
    
        public HttpArtifact(HttpServer server, String modulePath) {
            super(server)
            this.modulePath = modulePath
        }
    
        @Override
        HttpResource getMd5() {
            return new BasicHttpResource(server, getMd5File(), "${path}.md5")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpec.java

                    }
                    i++;
                }
                modulePath = modulePaths.stream()
                    .map(File::new)
                    .collect(toImmutableList());
            }
            return modulePath;
        }
    
        @Override
        public void setModulePath(List<File> modulePath) {
            this.modulePath = modulePath;
        }
    
        @Override
        public List<File> getSourceRoots() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecTest.groovy

            DefaultJavaCompileSpec compileSpec = new DefaultJavaCompileSpec()
            compileSpec.setCompileOptions(options)
    
            when:
            def modulePath = compileSpec.modulePath
    
            then:
            modulePath == [new File("/some/path"), new File("/some/path2")]
    
            where:
            description               | modulePathParameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pkg/wasm/cache_test.go

    				filePath := generateModulePath(t, tmpDir, k.name, m.modulePath)
    				err := os.WriteFile(filePath, []byte("data/\n"), 0o644)
    				if err != nil {
    					t.Fatalf("failed to write initial wasm module file %v", err)
    				}
    				mkey := moduleKey{name: k.name, checksum: k.checksum}
    
    				cache.modules[mkey] = &cacheEntry{modulePath: filePath, last: initTime}
    				if m.referencingURLs != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		f.AddNewUse(diskPath, modulePath)
    	}
    	return nil
    }
    
    func (f *WorkFile) AddNewUse(diskPath, modulePath string) {
    	line := f.Syntax.addLine(nil, "use", AutoQuote(diskPath))
    	f.Use = append(f.Use, &Use{Path: diskPath, ModulePath: modulePath, Syntax: line})
    }
    
    func (f *WorkFile) SetUse(dirs []*Use) {
    	need := make(map[string]string)
    	for _, d := range dirs {
    		need[d.Path] = d.ModulePath
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultJavaAppStartScriptGenerationDetails.java

            this.modulePath = modulePath;
            this.scriptRelPath = scriptRelPath;
            this.appNameSystemProperty = appNameSystemProperty;
        }
    
        @Override
        public String getApplicationName() {
            return applicationName;
        }
    
        @Override
        public String getOptsEnvironmentVar() {
            return optsEnvironmentVar;
        }
    
        @Override
        public String getExitEnvironmentVar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top