Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for moduledata (0.24 sec)

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

    			case objabi.R_INITORDER:
    				// inittasks has already run, so any R_INITORDER links are now
    				// superfluous - the only live inittask records are those which are
    				// in a scheduled list somewhere (e.g. runtime.moduledata.inittasks).
    				continue
    			}
    			rs := r.Sym()
    			if isgotype && usedInIface && d.ldr.IsGoType(rs) && !d.ldr.AttrUsedInIface(rs) {
    				// If a type is converted to an interface, it is possible to obtain an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. 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)
  3. src/debug/gosym/pclntab.go

    	// In Go 1.18, the first field of _func changed
    	// from a uintptr entry PC to a uint32 entry offset.
    	if f.t.version >= ver118 {
    		// TODO: support multiple text sections.
    		// See runtime/symtab.go:(*moduledata).textAddr.
    		return uint64(f.t.binary.Uint32(f.data)) + f.t.textStart
    	}
    	return f.t.uintptr(f.data)
    }
    
    func (f funcData) nameOff() uint32     { return f.field(1) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. src/runtime/asm_s390x.s

    	// Don't bother saving F8-F15 as we aren't doing any calls.
    	STMG	R6, R15, 48(R15)
    
    	// append the argument (passed in R2, as per the ELF ABI) to the
    	// moduledata linked list.
    	MOVD	runtime·lastmoduledatap(SB), R1
    	MOVD	R2, moduledata_next(R1)
    	MOVD	R2, runtime·lastmoduledatap(SB)
    
    	// Restore R6-R15.
    	LMG	48(R15), R6, R15
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top