Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 455 for fullpath (0.13 sec)

  1. src/cmd/cgo/internal/testcshared/cshared_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "go.mod"), "go.mod")
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "libgo", "libgo.go"), filepath.Join("libgo", "libgo.go"))
    	copyFile(t, filepath.Join(tmpdir, "src", "testcshared", "p", "p.go"), filepath.Join("p", "p.go"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/util/files/files_test.go

    		// allocate dirs
    		for _, f := range c.expects {
    			if f.mode.IsDir() {
    				path := filepath.Join(dir, f.name)
    				if _, ok := dirs[path]; !ok {
    					dirs[path] = map[string]string{}
    				}
    			} else if f.mode.IsRegular() {
    				path := filepath.Join(dir, filepath.Dir(f.name))
    				if _, ok := dirs[path]; !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 07 11:36:13 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  3. cni/pkg/install/cniconfig_test.go

    			for _, filename := range c.existingConfFiles {
    				if err := file.AtomicCopy(filepath.Join("testdata", filepath.Base(filename)), tempDir, filepath.Base(filename)); err != nil {
    					t.Fatal(err)
    				}
    			}
    
    			var expectedFilepath string
    			if len(c.expectedConfName) > 0 {
    				expectedFilepath = filepath.Join(tempDir, c.expectedConfName)
    			}
    
    			if !c.chainedCNIPlugin {
    				// Standalone CNI plugin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. tools/docker-builder/docker.go

    		if alias != "" {
    			if err := Copy(filepath.Join(root, name+".tar.gz"), filepath.Join(root, alias+".tar.gz")); err != nil {
    				return err
    			}
    		}
    	}
    
    	return nil
    }
    
    func RunBake(args Args) error {
    	out := filepath.Join(testenv.LocalOut, "dockerx_build", "docker-bake.json")
    	_ = os.MkdirAll(filepath.Join(testenv.LocalOut, "release", "docker"), 0o755)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java

            responseData.setMethod(Constants.GET_METHOD);
            final String filePath = preprocessUri(uri);
            responseData.setUrl(filePath);
    
            SmbFile file = null;
            final SmbAuthentication smbAuthentication = smbAuthenticationHolder.get(filePath);
            if (logger.isDebugEnabled()) {
                logger.debug("Creating SmbFile: {}", filePath);
            }
            try {
                if (smbAuthentication == null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/gcimporter_test.go

    	// filename must end with ".go"
    	basename, ok := strings.CutSuffix(filepath.Base(filename), ".go")
    	if !ok {
    		t.Fatalf("filename doesn't end in .go: %s", filename)
    	}
    	objname := basename + ".o"
    	outname := filepath.Join(outdirname, objname)
    
    	importcfgfile := os.DevNull
    	if len(packageFiles) > 0 || len(pkgImports) > 0 {
    		importcfgfile = filepath.Join(outdirname, basename) + ".importcfg"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. cmd/storage-rest-server.go

    	filePath := p.FilePath
    
    	resp, err := s.getStorage().CheckParts(context.Background(), volume, filePath, p.FI)
    	return resp, grid.NewRemoteErr(err)
    }
    
    func (s *storageRESTServer) WriteAllHandler(p *WriteAllHandlerParams) (grid.NoPayload, *grid.RemoteErr) {
    	if !s.checkID(p.DiskID) {
    		return grid.NewNPErr(errDiskNotFound)
    	}
    
    	volume := p.Volume
    	filePath := p.FilePath
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/controlplane/manifests.go

    		{Name: "tls-cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerCertName)},
    		{Name: "tls-private-key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerKeyName)},
    		{Name: "kubelet-client-certificate", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerKubeletClientCertName)},
    		{Name: "kubelet-client-key", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.APIServerKubeletClientKeyName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/eds_test.go

    	result := ""
    	fpathRoot := folder
    	if !strings.HasPrefix(fpathRoot, ".") {
    		fpathRoot = filepath.Join(env.IstioSrc, folder)
    	}
    	f, err := os.ReadDir(fpathRoot)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, fpath := range f {
    		bytes, err := os.ReadFile(filepath.Join(fpathRoot, fpath.Name()))
    		if err != nil {
    			t.Fatal(err)
    		}
    		result += "---\n"
    		result += string(bytes)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    	ia1, err := os.Stat("a")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	path, err := filepath.Abs("a")
    	if err != nil {
    		t.Fatal(err)
    	}
    	ia2, err := os.Stat(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !os.SameFile(ia1, ia2) {
    		t.Errorf("files should be same")
    	}
    
    	p := filepath.VolumeName(path) + filepath.Base(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	ia3, err := os.Stat(p)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top