Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for moduledata (0.18 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/test/TestTaskPropertiesServiceIntegrationTest.groovy

                    executable == expectedExecutable
                    javaMajorVersion == expectedJavaVersion
                    classpath.collect { new File(it as String) }.containsAll(expectedClasspath)
                    modulePath == []
                    jvmArgs.contains('-Dkey=value')
                    environment.KEY == 'VALUE'
                }
                with(candidateClassFiles, List) {
                    size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        module = module.replace('\\', File.separatorChar).replace('/', File.separatorChar);
    
                        Path modulePath = modelProcessor.locateExistingPom(new File(basedir, module).toPath());
                        File moduleFile = modulePath != null ? modulePath.toFile() : null;
    
                        if (moduleFile == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    		end = tok.endPos
    	}
    }
    
    var (
    	slashSlash = []byte("//")
    	moduleStr  = []byte("module")
    )
    
    // ModulePath returns the module path from the gomod file text.
    // If it cannot find a module path, it returns an empty string.
    // It is tolerant of unrelated problems in the go.mod file.
    func ModulePath(mod []byte) string {
    	for len(mod) > 0 {
    		line := mod
    		mod = nil
    		if i := bytes.IndexByte(line, '\n'); i >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top