Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 65 for moduledata (0.21 sec)

  1. src/runtime/debuglog.go

    	datap := &firstmoduledata
    	if len(x) > 4 && datap.etext <= uintptr(unsafe.Pointer(strData)) && uintptr(unsafe.Pointer(strData)) < datap.end {
    		// String constants are in the rodata section, which
    		// isn't recorded in moduledata. But it has to be
    		// somewhere between etext and end.
    		l.w.byte(debugLogConstString)
    		l.w.uvarint(uint64(len(x)))
    		l.w.uvarint(uint64(uintptr(unsafe.Pointer(strData)) - datap.etext))
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. 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)
  3. 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 (1)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            List<File> modulePath = new ArrayList<>();
    
            if (runAsModule) {
                modulePath.addAll(workerMainClassPath);
            } else {
                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
            classpath.addAll(applicationClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptGenerator.java

        }
    
        public void setClasspath(Iterable<String> classpath) {
            this.classpath = classpath;
        }
    
        public void setModulePath(Iterable<String> modulePath) {
            this.modulePath = modulePath;
        }
    
        public void setScriptRelPath(String scriptRelPath) {
            this.scriptRelPath = scriptRelPath;
        }
    
        public void setAppNameSystemProperty(String appNameSystemProperty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top