Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for moduledata (0.31 sec)

  1. 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)
  2. 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)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFramework.java

            return Collections.emptyList();
        }
    
        /**
         * Returns a list of distribution modules that the test worker requires on the application modulepath if it runs as a module.
         * These dependencies are loaded from the Gradle distribution.
         *
         * Application classes specified by {@link WorkerProcessBuilder#sharedPackages} are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/MinimalJavadocOptions.java

        List<File> getModulePath();
    
        /**
         * The --module-path.
         *
         * @since 6.4
         */
        void setModulePath(List<File> modulePath);
    
        /**
         * The --module-path.
         *
         * @since 6.4
         */
        MinimalJavadocOptions modulePath(List<File> classpath);
    
        MinimalJavadocOptions classpath(List<File> classpath);
    
        MinimalJavadocOptions classpath(File... classpath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. src/internal/coverage/decodemeta/decode.go

    	return d.strtab.Get(d.hdr.PkgPath)
    }
    
    func (d *CoverageMetaDataDecoder) PackageName() string {
    	return d.strtab.Get(d.hdr.PkgName)
    }
    
    func (d *CoverageMetaDataDecoder) ModulePath() string {
    	return d.strtab.Get(d.hdr.ModulePath)
    }
    
    func (d *CoverageMetaDataDecoder) NumFuncs() uint32 {
    	return d.hdr.NumFuncs
    }
    
    // ReadFunc reads the coverage meta-data for the function with index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 3.6K 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