Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for moduledata (0.26 sec)

  1. 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)
  2. 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)
  3. src/cmd/internal/cov/covcmd/cmddefs.go

    	PkgPath string
    
    	// Package name.
    	PkgName string
    
    	// Instrumentation granularity: one of "perfunc" or "perblock" (default)
    	Granularity string
    
    	// Module path for this package (empty if no go.mod in use)
    	ModulePath string
    
    	// Local mode indicates we're doing a coverage build or test of a
    	// package selected via local import path, e.g. "./..." or
    	// "./foo/bar" as opposed to a non-relative import path. See the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptTemplateBindingFactory.java

            DEFAULT_JVM_OPTS("defaultJvmOpts"),
            APP_NAME_SYS_PROP("appNameSystemProperty"),
            APP_HOME_REL_PATH("appHomeRelativePath"),
            CLASSPATH("classpath"),
            MODULE_PATH("modulePath");
    
            private final String key;
    
            ScriptBindingParameter(String key) {
                this.key = key;
            }
    
            public String getKey() {
                return key;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. src/internal/coverage/defs.go

    // computed for a given Go package.
    type MetaSymbolHeader struct {
    	Length     uint32 // size of meta-symbol payload in bytes
    	PkgName    uint32 // string table index
    	PkgPath    uint32 // string table index
    	ModulePath uint32 // string table index
    	MetaHash   [16]byte
    	_          byte    // currently unused
    	_          [3]byte // padding
    	NumFiles   uint32
    	NumFuncs   uint32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 12:51:16 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/modfetch/toolchain.go

    // the one you can actually download.
    type toolchainRepo struct {
    	path string // either "go" or "toolchain"
    	repo Repo   // underlying DL repo
    }
    
    func (r *toolchainRepo) ModulePath() string {
    	return r.path
    }
    
    func (r *toolchainRepo) Versions(ctx context.Context, prefix string) (*Versions, error) {
    	// Read DL repo list and convert to "go" or "toolchain" version list.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 13 16:44:24 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    	// packages in the program (excluding those added at runtime
    	// by package plugin). Run through the modules in dependency
    	// order (the order they are initialized by the dynamic
    	// loader, i.e. they are added to the moduledata linked list).
    	for m := &firstmoduledata; m != nil; m = m.next {
    		doInit(m.inittasks)
    	}
    
    	// Disable init tracing after main init done to avoid overhead
    	// of collecting statistics in malloc and newproc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

      Darwin* )         darwin=true  ;; #(
      MSYS* | MINGW* )  msys=true    ;; #(
      NONSTOP* )        nonstop=true ;;
    esac
    
    CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>
    MODULE_PATH=$modulePath
    <% } %>
    
    # Determine the Java command to use to start the JVM.
    if [ -n "\$JAVA_HOME" ] ; then
        if [ -x "\$JAVA_HOME/jre/sh/java" ] ; then
            # IBM's JDK on AIX uses strange locations for the executables
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/coderepo.go

    		codeRoot:    codeRoot,
    		codeDir:     codeDir,
    		pathPrefix:  pathPrefix,
    		pathMajor:   pathMajor,
    		pseudoMajor: pseudoMajor,
    	}
    
    	return r, nil
    }
    
    func (r *codeRepo) ModulePath() string {
    	return r.modPath
    }
    
    func (r *codeRepo) CheckReuse(ctx context.Context, old *codehost.Origin) error {
    	return r.code.CheckReuse(ctx, old, r.codeDir)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top