Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 189 for pathnames (0.2 sec)

  1. cmd/metacache-bucket_test.go

    	if elements%paths != 0 {
    		b.Fatal("elements must be divisible by the number of paths")
    	}
    	var pathNames [paths]string
    	for i := range pathNames[:] {
    		pathNames[i] = fmt.Sprintf("prefix/%d", i)
    	}
    	for i := 0; i < elements; i++ {
    		bm.findCache(listPathOptions{
    			ID:           mustGetUUID(),
    			Bucket:       "",
    			BaseDir:      pathNames[i%paths],
    			Prefix:       "",
    			FilterPrefix: "",
    			Marker:       "",
    			Limit:        0,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 25 23:29:45 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	flagMeanDelay := flag.Bool("mean_delay", false, "Display mean delay at each region")
    	flagTools := flag.String("tools", os.Getenv("PPROF_TOOLS"), "Path for object tool pathnames")
    
    	flagHTTP := flag.String("http", "", "Present interactive web UI at the specified http host:port")
    	flagNoBrowser := flag.Bool("no_browser", false, "Skip opening a browser for the interactive web UI")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	slices.Sort(filenames)
    	mcDir, err := minorChangesDir(docFS)
    	if err != nil {
    		return err
    	}
    	var errs []error
    	for _, fn := range filenames {
    		// Use path.Join for consistency with io/fs pathnames.
    		fn = path.Join(mcDir, fn)
    		// TODO(jba): check that the file mentions each feature?
    		if err := checkFragmentFile(docFS, fn); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. pkg/volume/util/atomic_writer.go

    	maxPathLength     = 4096
    )
    
    // AtomicWriter handles atomically projecting content for a set of files into
    // a target directory.
    //
    // Note:
    //
    //  1. AtomicWriter reserves the set of pathnames starting with `..`.
    //  2. AtomicWriter offers no concurrency guarantees and must be synchronized
    //     by the caller.
    //
    // The visible files in this volume are symlinks to files in the writer's data
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/cover/cover.go

    	// The convention for cmd/cover is that if the go command that
    	// kicks off coverage specifies a local import path (e.g. "go test
    	// -cover ./thispackage"), the tool will capture full pathnames
    	// for source files instead of relative paths, which tend to work
    	// more smoothly for "go tool cover -html". See also issue #56433
    	// for more details.
    	if pkgconfig.Local {
    		filename = f.name
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    class GTEST_API_ FilePath {
     public:
      FilePath() : pathname_("") { }
      FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
    
      explicit FilePath(const std::string& pathname) : pathname_(pathname) {
        Normalize();
      }
    
      FilePath& operator=(const FilePath& rhs) {
        Set(rhs);
        return *this;
      }
    
      void Set(const FilePath& rhs) {
        pathname_ = rhs.pathname_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    class GTEST_API_ FilePath {
     public:
      FilePath() : pathname_("") { }
      FilePath(const FilePath& rhs) : pathname_(rhs.pathname_) { }
    
      explicit FilePath(const std::string& pathname) : pathname_(pathname) {
        Normalize();
      }
    
      FilePath& operator=(const FilePath& rhs) {
        Set(rhs);
        return *this;
      }
    
      void Set(const FilePath& rhs) {
        pathname_ = rhs.pathname_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/volume/util/hostutil/hostutil_linux.go

    }
    
    // GetMode returns permissions of the path.
    func (hu *HostUtil) GetMode(pathname string) (os.FileMode, error) {
    	return GetModeLinux(pathname)
    }
    
    // GetOwnerLinux is shared between Linux and NsEnterMounter
    // pathname must already be evaluated for symlinks
    func GetOwnerLinux(pathname string) (int64, int64, error) {
    	info, err := os.Stat(pathname)
    	if err != nil {
    		return -1, -1, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 23 08:36:44 UTC 2023
    - 10K bytes
    - Viewed (0)
  9. pkg/volume/util/hostutil/fake_hostutil.go

    // Defaults to Directory if otherwise unspecified.
    func (hu *FakeHostUtil) GetFileType(pathname string) (FileType, error) {
    	if t, ok := hu.Filesystem[pathname]; ok {
    		return t, nil
    	}
    	return FileType("Directory"), nil
    }
    
    // PathExists checks if pathname exists.
    func (hu *FakeHostUtil) PathExists(pathname string) (bool, error) {
    	if _, ok := hu.Filesystem[pathname]; ok {
    		return true, nil
    	}
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 13:32:38 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/volume/util/hostutil/hostutil_unsupported.go

    func (hu *HostUtil) GetFileType(pathname string) (FileType, error) {
    	return FileType("fake"), errUnsupported
    }
    
    // MakeFile always returns an error on unsupported platforms
    func (hu *HostUtil) MakeFile(pathname string) error {
    	return errUnsupported
    }
    
    // MakeDir always returns an error on unsupported platforms
    func (hu *HostUtil) MakeDir(pathname string) error {
    	return errUnsupported
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
Back to top