Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,140 for filedata (0.13 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.cc

      std::unique_ptr<raw_ostream> os;
      std::string filepath;
      Status result = CreateFileForDumping(name, &os, &filepath, dirname);
      if (!result.ok()) return std::string(result.message());
    
      (*os) << content;
      LOG(INFO) << "Outputted requested string to '" << filepath << "'";
      return filepath;
    }
    
    void SetCrashReproducer(mlir::PassManager& pm, llvm::StringRef dir_path) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 03:03:46 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/etcd/local_test.go

    				"--data-dir=/var/lib/etcd",
    				"--cert-file=" + filepath.FromSlash(kubeadmconstants.EtcdServerCertName),
    				"--key-file=" + filepath.FromSlash(kubeadmconstants.EtcdServerKeyName),
    				"--trusted-ca-file=" + filepath.FromSlash(kubeadmconstants.EtcdCACertName),
    				"--client-cert-auth=true",
    				"--peer-cert-file=" + filepath.FromSlash(kubeadmconstants.EtcdPeerCertName),
    				"--peer-key-file=" + filepath.FromSlash(kubeadmconstants.EtcdPeerKeyName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. cmd/config-dir.go

    func getDefaultConfigDir() string {
    	homeDir, err := homedir.Dir()
    	if err != nil {
    		return ""
    	}
    
    	return filepath.Join(homeDir, defaultMinioConfigDir)
    }
    
    func getDefaultCertsDir() string {
    	return filepath.Join(getDefaultConfigDir(), certsDir)
    }
    
    func getDefaultCertsCADir() string {
    	return filepath.Join(getDefaultCertsDir(), certsCADir)
    }
    
    var (
    	// Default config, certs and CA directories.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 3K bytes
    - Viewed (0)
  4. src/internal/abi/abi_test.go

    	// Run the assembler and compiler manually.
    	tmpdir := t.TempDir()
    	asmSrc := filepath.Join("testdata", "x.s")
    	goSrc := filepath.Join("testdata", "x.go")
    	symabi := filepath.Join(tmpdir, "symabi")
    	obj := filepath.Join(tmpdir, "x.o")
    
    	// Write an importcfg file for the dependencies of the package.
    	importcfgfile := filepath.Join(tmpdir, "hello.importcfg")
    	testenv.WriteImportcfg(t, importcfgfile, nil, "internal/abi")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    			assertDirEmpty(t, filepath.Join(tmpDir, "manifests"))
    			assertDirEmpty(t, filepath.Join(tmpDir, "pki"))
    			assertDirEmpty(t, filepath.Join(tmpDir, "tmp"))
    
    			// Verify the files as requested by the test:
    			for _, path := range test.verifyExists {
    				assertExists(t, filepath.Join(tmpDir, path))
    			}
    			for _, path := range test.verifyNotExists {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarFileMetadata.java

    public class GrammarFileMetadata {
        private final File filePath;
        private final antlr.preprocessor.GrammarFile antlrGrammarFile;
        private final String packageName;
        private List<GrammarMetadata> grammarMetadatas = new ArrayList<GrammarMetadata>();
    
        public GrammarFileMetadata(File filePath, antlr.preprocessor.GrammarFile antlrGrammarFile, String packageName) {
            this.filePath = filePath;
            this.antlrGrammarFile = antlrGrammarFile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/volume/flexvolume/probe_test.go

    	assert.NoError(t, err)
    	assert.Equal(t, 0, len(events))
    
    	// Call probe after a file is added. Should return 1 event.
    
    	// add driver
    	const driverName2 = "fake-driver2"
    	driverPath := filepath.Join(pluginDir, driverName2)
    	executablePath := filepath.Join(driverPath, driverName2)
    	installDriver(driverName2, fs)
    	watcher.TriggerEvent(fsnotify.Create, driverPath)
    	watcher.TriggerEvent(fsnotify.Create, executablePath)
    
    	// Act
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 28 11:14:00 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. src/cmd/pack/pack_test.go

    	dir := t.TempDir()
    	hello := filepath.Join(dir, "hello.go")
    	prog := `
    		package main
    		func main() {
    			println("hello world")
    		}
    	`
    	err := os.WriteFile(hello, []byte(prog), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	run := func(args ...string) string {
    		return doRun(t, dir, args...)
    	}
    
    	importcfgfile := filepath.Join(dir, "hello.importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    	tmpdir := t.TempDir()
    
    	aSrc := filepath.Join("testdata", "testIndexMismatch", "a.go")
    	bSrc := filepath.Join("testdata", "testIndexMismatch", "b.go")
    	mSrc := filepath.Join("testdata", "testIndexMismatch", "main.go")
    	aObj := filepath.Join(tmpdir, "a.o")
    	mObj := filepath.Join(tmpdir, "main.o")
    	exe := filepath.Join(tmpdir, "main.exe")
    
    	importcfgFile := filepath.Join(tmpdir, "runtime.importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/workcmd/use.go

    	workDir := filepath.Dir(gowork) // absolute, since gowork itself is absolute
    
    	haveDirs := make(map[string][]string) // absolute → original(s)
    	for _, use := range wf.Use {
    		var abs string
    		if filepath.IsAbs(use.Path) {
    			abs = filepath.Clean(use.Path)
    		} else {
    			abs = filepath.Join(workDir, use.Path)
    		}
    		haveDirs[abs] = append(haveDirs[abs], use.Path)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 7K bytes
    - Viewed (0)
Back to top