Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for relPath (0.31 sec)

  1. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaIntegrationTest.groovy

            assert libs.CLASSES.root*.@url*.text().findAll() { it.contains("\$GRADLE_REPO\$") }.size() == 1
            assert libs.CLASSES.root*.@url*.text().collect { it.replace("\$GRADLE_REPO\$", relPath(repoDir)) } as Set == ["jar://${relPath(artifact1)}!/"] as Set
        }
    
        @Test
        @ToBeFixedForConfigurationCache
        void onlyAddsSourceDirsThatExistOnFileSystem() {
            runIdeaTask """
    apply plugin: "java"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. tests/integration/helm/util.go

    	scopes.Framework.Infof("=== succeeded === ")
    }
    
    func SetRevisionTag(ctx framework.TestContext, h *helm.Helm, fileSuffix, revision, revisionTag, relPath, version string) {
    	scopes.Framework.Infof("=== setting revision tag === ")
    	template, err := h.Template(IstiodReleaseName+"-"+revision, filepath.Join(relPath, version, ControlChartsDir, DiscoveryChartsDir)+fileSuffix,
    		IstioNamespace, "templates/revision-tags.yaml", Timeout, "--set",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modindex/read.go

    func (m *Module) Walk(f func(path string)) {
    	defer unprotect(protect(), nil)
    	for i := 0; i < m.n; i++ {
    		f(m.pkgDir(i))
    	}
    }
    
    // relPath returns the path relative to the module's root.
    func relPath(path, modroot string) string {
    	return str.TrimFilePathPrefix(filepath.Clean(path), filepath.Clean(modroot))
    }
    
    var installgorootAll = godebug.New("installgoroot").Value() == "all"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	err = filepath.Walk(dir, func(filePath string, info os.FileInfo, err error) error {
    		if err != nil {
    			return err
    		}
    		relPath, err := filepath.Rel(dir, filePath)
    		if err != nil {
    			return err
    		}
    		slashPath := filepath.ToSlash(relPath)
    
    		// Skip some subdirectories inside vendor, but maintain bug
    		// golang.org/issue/31562, described in isVendoredPackage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  5. cmd/import-boss/main.go

    					errs = append(errs, fmt.Errorf("%q %s %q is forbidden by %s", pkg.PkgPath, relate(imp), imp, file.path))
    					decided = true
    					break // no further rules, next file
    				}
    			}
    			if decided {
    				break // no further files, next import
    			}
    		}
    		if matched && !decided {
    			klog.V(5).Infof("%q %s %q did not match any rule", pkg, relate(imp), imp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/metadata/GccMetadataProvider.java

                        File realPath = new File(include);
                        try {
                            realPath = realPath.toPath().toRealPath().toFile();
                        } catch (NoSuchFileException ignore) {
                            // resolve the potential symlink, if not found, fallback to do nothing.
                        }
                        builder.add(FileUtils.normalize(realPath));
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 15 06:39:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/vendor.go

    		fmt.Fprintf(os.Stderr, "warning: %s imported as both %s and %s; making two copies.\n", realPath, realPath, pkg)
    	}
    
    	copiedFiles := make(map[string]bool)
    	dst := filepath.Join(vdir, pkg)
    	copyDir(dst, src, matchPotentialSourceFile, copiedFiles)
    	if m := modload.PackageModule(realPath); m.Path != "" {
    		copyMetadata(m.Path, realPath, dst, src, copiedFiles)
    	}
    
    	ctx := build.Default
    	ctx.UseAllFiles = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/EventListener.kt

      open fun connectionReleased(
        call: Call,
        connection: Connection,
      ) {
      }
    
      /**
       * Invoked just prior to sending request headers.
       *
       * The connection is implicit, and will generally relate to the last [connectionAcquired] event.
       *
       * This can be invoked more than 1 time for a single [Call]. For example, if the response to the
       * [Call.request] is a redirect to a different address.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/hostutil_linux.go

    }
    
    // GetOwner returns the integer ID for the user and group of the given path
    func (hu *HostUtil) GetOwner(pathname string) (int64, int64, error) {
    	realpath, err := filepath.EvalSymlinks(pathname)
    	if err != nil {
    		return -1, -1, err
    	}
    	return GetOwnerLinux(realpath)
    }
    
    // GetMode returns permissions of the path.
    func (hu *HostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return GetModeLinux(pathname)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. cmd/perf-tests.go

    		RXTotalDuration: delta,
    		Error:           errStr,
    		TotalConn:       uint64(connectionsPerPeer),
    	}
    }
    
    // perfNetRequest - reader for http.request.body
    func perfNetRequest(ctx context.Context, deploymentID, reqPath string, reader io.Reader) (result madmin.SiteNetPerfNodeResult) {
    	result = madmin.SiteNetPerfNodeResult{}
    	cli, err := globalSiteReplicationSys.getAdminClient(ctx, deploymentID)
    	if err != nil {
    		result.Error = err.Error()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top