Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for moduledata (0.31 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/work.go

    		f.AddNewUse(diskPath, modulePath)
    	}
    	return nil
    }
    
    func (f *WorkFile) AddNewUse(diskPath, modulePath string) {
    	line := f.Syntax.addLine(nil, "use", AutoQuote(diskPath))
    	f.Use = append(f.Use, &Use{Path: diskPath, ModulePath: modulePath, Syntax: line})
    }
    
    func (f *WorkFile) SetUse(dirs []*Use) {
    	need := make(map[string]string)
    	for _, d := range dirs {
    		need[d.Path] = d.ModulePath
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/DefaultJavaAppStartScriptGenerationDetails.java

            this.modulePath = modulePath;
            this.scriptRelPath = scriptRelPath;
            this.appNameSystemProperty = appNameSystemProperty;
        }
    
        @Override
        public String getApplicationName() {
            return applicationName;
        }
    
        @Override
        public String getOptsEnvironmentVar() {
            return optsEnvironmentVar;
        }
    
        @Override
        public String getExitEnvironmentVar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/ApplicationClassesInSystemClassLoaderWorkerImplementationFactory.java

            List<File> modulePath = new ArrayList<>();
    
            if (runAsModule) {
                modulePath.addAll(workerMainClassPath);
            } else {
                classpath.addAll(workerMainClassPath);
            }
            modulePath.addAll(applicationModulePath);
            classpath.addAll(applicationClasspath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:09:51 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/api/internal/plugins/StartScriptGenerator.java

        }
    
        public void setClasspath(Iterable<String> classpath) {
            this.classpath = classpath;
        }
    
        public void setModulePath(Iterable<String> modulePath) {
            this.modulePath = modulePath;
        }
    
        public void setScriptRelPath(String scriptRelPath) {
            this.scriptRelPath = scriptRelPath;
        }
    
        public void setAppNameSystemProperty(String appNameSystemProperty) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileRepository.groovy

        }
    
        private IvyFileModule createModule(String organisation, String module, String revision) {
            def modulePath = getDirPath(organisation, module, revision)
            def moduleDir = rootDir.file(modulePath)
            return new IvyFileModule(ivyFilePattern, artifactFilePattern, modulePath, moduleDir, organisation, module, revision, m2Compatible)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/internal/coverage/encodemeta/encode.go

    	x.stab.Lookup("")
    	x.pkgpath = x.stab.Lookup(pkgpath)
    	x.pkgname = x.stab.Lookup(pkgname)
    	x.modpath = x.stab.Lookup(modulepath)
    	io.WriteString(x.h, pkgpath)
    	io.WriteString(x.h, pkgname)
    	io.WriteString(x.h, modulepath)
    	return x, nil
    }
    
    func h32(x uint32, h hash.Hash, tmp []byte) {
    	tmp = tmp[:0]
    	tmp = append(tmp, 0, 0, 0, 0)
    	binary.LittleEndian.PutUint32(tmp, x)
    	h.Write(tmp)
    }
    
    type funcDesc struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download.go

    package configstore
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"os"
    	"os/exec"
    	"path/filepath"
    
    	"golang.org/x/telemetry/internal/telemetry"
    )
    
    const (
    	ModulePath     = "golang.org/x/telemetry/config"
    	configFileName = "config.json"
    )
    
    // needNoConsole is used on windows to set the windows.CREATE_NO_WINDOW
    // creation flag.
    var needNoConsole = func(cmd *exec.Cmd) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

        }
    
        private class IvyModuleHttpArtifact extends HttpArtifact {
            final ModuleArtifact backingArtifact
    
            IvyModuleHttpArtifact(HttpServer server, String modulePath, ModuleArtifact backingArtifact) {
                super(server, modulePath)
                this.backingArtifact = backingArtifact
            }
    
            @Override
            String getPath() {
                return repoPrefix + '/' + backingArtifact.path
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top