Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 97 for moduledata (0.41 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

        /**
         * The tag used for the raw model without profile activation
         */
        ModelCacheTag<ModelData> RAW = new ModelCacheTag<ModelData>() {
    
            @Override
            public String getName() {
                return "raw";
            }
    
            @Override
            public Class<ModelData> getType() {
                return ModelData.class;
            }
        };
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskForkOptions.java

        private final Iterable<File> classpath;
        private final Iterable<File> modulePath;
        private final List<String> jvmArgs;
        private final Map<String, String> environment;
    
        DefaultTestTaskForkOptions(
            File workingDir,
            String executable,
            int javaMajorVersion,
            Iterable<File> classpath,
            Iterable<File> modulePath,
            List<String> jvmArgs,
            Map<String, String> environment
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.6K 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/cmd/go/internal/modfetch/repo.go

    	}
    }
    
    func (l *loggingRepo) ModulePath() string {
    	return l.r.ModulePath()
    }
    
    func (l *loggingRepo) CheckReuse(ctx context.Context, old *codehost.Origin) (err error) {
    	defer func() {
    		logCall("CheckReuse[%s]: %v", l.r.ModulePath(), err)
    	}()
    	return l.r.CheckReuse(ctx, old)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. pkg/wasm/cache.go

    		}
    		return ce, nil
    	}
    
    	modulePath, err := getModulePath(c.dir, key.moduleKey)
    	if err != nil {
    		return nil, err
    	}
    	// Materialize the Wasm module into a local file. Use checksum as name of the module.
    	if err := os.WriteFile(modulePath, wasmModule, 0o644); err != nil {
    		return nil, err
    	}
    
    	ce := cacheEntry{
    		modulePath:      modulePath,
    		last:            time.Now(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top