Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 560 for fullpath (0.29 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredFileAccess.groovy

                "new File(\"${filePath}\").$checkKind()"
            }
        }
    
        static FileCheck fileExists(String filePath) {
            new FileCheck(filePath, "exists")
        }
    
        static FileCheck fileIsFile(String filePath) {
            new FileCheck(filePath, "isFile")
        }
    
        static FileCheck fileIsDirectory(String filePath) {
            new FileCheck(filePath, "isDirectory")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_getters_test.go

    	exp = filepath.Join(root, "plugins/foobar")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodDir("abc123")
    	exp = filepath.Join(root, "pods/abc123")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodVolumesDir("abc123")
    	exp = filepath.Join(root, "pods/abc123/volumes")
    	assert.Equal(t, exp, got)
    
    	got = kubelet.getPodVolumeDir("abc123", "plugin", "foobar")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pkg/test/util/file/file.go

    		for _, ext := range extensions {
    			if filepath.Ext(d.Name()) == ext {
    				matched = true
    				break
    			}
    		}
    		if matched {
    			res = append(res, filepath.Join(filePath, d.Name()))
    		}
    	}
    	return res, nil
    }
    
    func ReadDirOrFail(t test.Failer, filePath string, extensions ...string) []string {
    	t.Helper()
    	res, err := ReadDir(filePath, extensions...)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    	}
    	srcDir := filepath.Join(wd, "testdata", "pgo", "devirtualize")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    	if err := os.Mkdir(filepath.Join(dir, "mult.pkg"), 0755); err != nil {
    		t.Fatalf("error creating dir: %v", err)
    	}
    	for _, file := range []string{"devirt.go", "devirt_test.go", profFileName, filepath.Join("mult.pkg", "mult.go")} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. src/cmd/internal/bootstrap_test/reboot_test.go

    	parent := t.TempDir()
    	dotGit := filepath.Join(parent, ".git")
    	if err := os.Mkdir(dotGit, 000); err != nil {
    		t.Fatal(err)
    	}
    
    	overlayStart := time.Now()
    
    	goroot := filepath.Join(parent, "goroot")
    
    	gorootSrc := filepath.Join(goroot, "src")
    	if err := overlayDir(gorootSrc, filepath.Join(realGoroot, "src")); err != nil {
    		t.Fatal(err)
    	}
    
    	gorootLib := filepath.Join(goroot, "lib")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. tools/bug-report/pkg/archive/archive.go

    	return filepath.Join(getRootDir(rootDir), istioLogsPathSubdir, namespace, pod)
    }
    
    func OperatorPath(rootDir, namespace, pod string) string {
    	return filepath.Join(getRootDir(rootDir), operatorLogsPathSubdir, namespace, pod)
    }
    
    func AnalyzePath(rootDir, namespace string) string {
    	return filepath.Join(getRootDir(rootDir), analyzeSubdir, namespace)
    }
    
    func ClusterInfoPath(rootDir string) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 30 00:10:16 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. src/cmd/cover/cfg_test.go

    func writeOutFileList(t *testing.T, infiles []string, outdir, tag string) ([]string, string) {
    	outfilelist := filepath.Join(outdir, tag+"outfilelist.txt")
    	var sb strings.Builder
    	cv := filepath.Join(outdir, "covervars.go")
    	outfs := []string{cv}
    	fmt.Fprintf(&sb, "%s\n", cv)
    	for _, inf := range infiles {
    		base := filepath.Base(inf)
    		of := filepath.Join(outdir, tag+".cov."+base)
    		outfs = append(outfs, of)
    		fmt.Fprintf(&sb, "%s\n", of)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 12:51:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/idea/model/SingleEntryModuleLibrary.java

         * @param javadoc paths to javadoc jars or javadoc folders
         * @param source paths to source jars or source folders
         * @param scope scope
         */
        public SingleEntryModuleLibrary(FilePath library, Set<FilePath> javadoc, Set<FilePath> source, String scope) {
            super(Collections.singletonList(library), javadoc, source, new ArrayList<>(), scope);
        }
    
        /**
         * Creates single entry module library
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/os/example_test.go

    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(d)
    	targetPath := filepath.Join(d, "hello.txt")
    	if err := os.WriteFile(targetPath, []byte("Hello, Gophers!"), 0644); err != nil {
    		log.Fatal(err)
    	}
    	linkPath := filepath.Join(d, "hello.link")
    	if err := os.Symlink("hello.txt", filepath.Join(d, "hello.link")); err != nil {
    		if errors.Is(err, errors.ErrUnsupported) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. src/cmd/internal/bootstrap_test/overlaydir_test.go

    		return err
    	}
    
    	srcRoot, err := filepath.Abs(srcRoot)
    	if err != nil {
    		return err
    	}
    
    	return filepath.WalkDir(srcRoot, func(srcPath string, entry fs.DirEntry, err error) error {
    		if err != nil || srcPath == srcRoot {
    			return err
    		}
    		if filepath.Base(srcPath) == "testdata" {
    			// We're just building, so no need to copy those.
    			return fs.SkipDir
    		}
    
    		suffix := strings.TrimPrefix(srcPath, srcRoot)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top