Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for moduledata (0.14 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. 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)
  3. 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)
  4. pkg/wasm/cache.go

    		}
    		return ce, nil
    	}
    
    	modulePath, err := getModulePath(c.dir, key.moduleKey)
    	if err != nil {
    		return nil, err
    	}
    	// Materialize the Wasm module into a local file. Use checksum as name of the module.
    	if err := os.WriteFile(modulePath, wasmModule, 0o644); err != nil {
    		return nil, err
    	}
    
    	ce := cacheEntry{
    		modulePath:      modulePath,
    		last:            time.Now(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/workcmd/edit.go

    	workedits = append(workedits, func(f *modfile.WorkFile) {
    		_, mf, err := modload.ReadModFile(filepath.Join(arg, "go.mod"), nil)
    		modulePath := ""
    		if err == nil {
    			modulePath = mf.Module.Mod.Path
    		}
    		f.AddUse(modload.ToDirectoryPath(arg), modulePath)
    		if err := f.AddUse(modload.ToDirectoryPath(arg), ""); err != nil {
    			base.Fatalf("go: -use=%s: %v", arg, err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            boolean publishGradle() {
                gradle
            }
        }
    
        IvyFileModule(String ivyPattern, String artifactPattern, String modulePath, TestFile moduleDir, String organisation, String module, String revision, boolean m2Compatible) {
            this.modulePath = modulePath
            this.ivyPattern = ivyPattern
            this.artifactPattern = artifactPattern
            this.moduleDir = moduleDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add(Joiner.on(File.pathSeparatorChar).join(classpath));
    
            if (!modulePath.isEmpty()) {
                if (moduleVersion != null) {
                    args.add("--module-version");
                    args.add(moduleVersion);
                }
                args.add("--module-path");
                args.add(Joiner.on(File.pathSeparatorChar).join(modulePath));
            }
        }
    
        private void addSourceFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. src/cmd/internal/moddeps/moddeps_test.go

    			}
    		})
    	}
    }
    
    // packagePattern returns a package pattern that matches all packages
    // in the module modulePath, and ideally as few others as possible.
    func packagePattern(modulePath string) string {
    	if modulePath == "std" {
    		return "std"
    	}
    	return modulePath + "/..."
    }
    
    // makeGOROOTCopy makes a temporary copy of the current GOROOT tree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationModulepath.isEmpty()
        }
    
        def "adds framework dependencies to classpath and modulepath when test is module"() {
            when:
            def framework = newFramework(true, ["app-cls"], ["app-mod"], ["impl-cls"], ["impl-mod"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    		return fmt.Errorf("invalid path element %q", elem)
    	}
    	if elem[0] == '.' && kind == modulePath {
    		return fmt.Errorf("leading dot in path element")
    	}
    	if elem[len(elem)-1] == '.' {
    		return fmt.Errorf("trailing dot in path element")
    	}
    	for _, r := range elem {
    		ok := false
    		switch kind {
    		case modulePath:
    			ok = modPathOK(r)
    		case importPath:
    			ok = importPathOK(r)
    		case filePath:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top