Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for moduledata (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                throws ModelBuilderException {
            ModelSource modelSource = request.getSource();
    
            ModelData modelData =
                    cache(getModelCache(request), modelSource, RAW, () -> doReadRawModel(modelSource, request, problems));
    
            return modelData.model();
        }
    
        private ModelData doReadRawModel(
                ModelSource modelSource, ModelBuilderRequest request, DefaultModelProblemCollector problems)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K 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. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            ModelSource modelSource = request.getModelSource();
    
            ModelData modelData = cache(
                    request.getModelCache(),
                    modelSource,
                    ModelCacheTag.RAW,
                    () -> doReadRawModel(modelSource, request, problems));
    
            return modelData.getModel();
        }
    
        private ModelData doReadRawModel(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/workcmd/edit.go

    	workedits = append(workedits, func(f *modfile.WorkFile) {
    		_, mf, err := modload.ReadModFile(filepath.Join(arg, "go.mod"), nil)
    		modulePath := ""
    		if err == nil {
    			modulePath = mf.Module.Mod.Path
    		}
    		f.AddUse(modload.ToDirectoryPath(arg), modulePath)
    		if err := f.AddUse(modload.ToDirectoryPath(arg), ""); err != nil {
    			base.Fatalf("go: -use=%s: %v", arg, err)
    		}
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            boolean publishGradle() {
                gradle
            }
        }
    
        IvyFileModule(String ivyPattern, String artifactPattern, String modulePath, TestFile moduleDir, String organisation, String module, String revision, boolean m2Compatible) {
            this.modulePath = modulePath
            this.ivyPattern = ivyPattern
            this.artifactPattern = artifactPattern
            this.moduleDir = moduleDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder.java

            args.add(Joiner.on(File.pathSeparatorChar).join(classpath));
    
            if (!modulePath.isEmpty()) {
                if (moduleVersion != null) {
                    args.add("--module-version");
                    args.add(moduleVersion);
                }
                args.add("--module-path");
                args.add(Joiner.on(File.pathSeparatorChar).join(modulePath));
            }
        }
    
        private void addSourceFiles() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:08 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top