Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 65 for moduledata (0.15 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/MavenHttpArtifact.groovy

        }
    
        @Override
        protected TestFile getSha512File() {
            backingModule.getSha512File(file)
        }
    
        @Override
        String getPath() {
            return "${modulePath}/${backingArtifact.path}"
        }
    
        @Override
        TestFile getFile() {
            return backingArtifact.getFile()
        }
    
        @Override
        String getName() {
            return backingArtifact.name
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/internal/plugins/StartScriptGeneratorTest.groovy

            startScriptGenerator.mainClassName = MAIN_CLASSNAME
            startScriptGenerator.defaultJvmOpts = DEFAULT_JVM_OPTS
            startScriptGenerator.classpath = CLASSPATH
            startScriptGenerator.modulePath = MODULE_PATH
            startScriptGenerator.scriptRelPath = SCRIPT_REL_PATH
            startScriptGenerator.appNameSystemProperty = APP_NAME_SYS_PROP
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/handler/manager/DefaultArtifactHandlerManager.java

            });
    
            // Note: here, type decides is artifact added to "build path" (for example during resolution)
            // and "build path" is intermediate data that is used to create actual Java classpath/modulepath
            // but to create those, proper filtering should happen via Type properties.
        }
    
        @Override
        public void addHandlers(Map<String, ArtifactHandler> handlers) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/windowsStartScript.txt

    echo location of your Java installation. 1>&2
    
    goto fail
    
    :execute
    @rem Setup the command line
    
    set CLASSPATH=$classpath
    <% if ( mainClassName.startsWith('--module ') ) { %>set MODULE_PATH=$modulePath<% } %>
    
    @rem Execute ${applicationName}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 13:16:41 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top