Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for moduledata (0.53 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

         */
        Set<String> getClassesToCompile();
    
        List<File> getModulePath();
    
        void setModulePath(List<File> modulePath);
    
        default boolean annotationProcessingConfigured() {
            return !getAnnotationProcessorPath().isEmpty() && !getCompileOptions().getCompilerArgs().contains("-proc:none");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/internal/coverage/test/roundtrip_test.go

    	if pp != p {
    		t.Errorf("dec.PackagePath(): got %s want %s", pp, p)
    	}
    	ppn := dec.PackageName()
    	if ppn != pn {
    		t.Errorf("dec.PackageName(): got %s want %s", ppn, pn)
    	}
    	pmp := dec.ModulePath()
    	if pmp != mp {
    		t.Errorf("dec.ModulePath(): got %s want %s", pmp, mp)
    	}
    }
    
    func TestMetaDataEncoderDecoder(t *testing.T) {
    	// Test encode path.
    	pp := "foo/bar/pkg"
    	pn := "pkg"
    	mp := "barmod"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 21:42:05 UTC 2023
    - 8.5K 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/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)
  7. 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)
  8. 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)
Back to top