Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for jsTest (0.11 sec)

  1. src/io/fs/fs.go

    // license that can be found in the LICENSE file.
    
    // Package fs defines basic interfaces to a file system.
    // A file system can be provided by the host operating system
    // but also by other packages.
    //
    // See the [testing/fstest] package for support with testing
    // implementations of file systems.
    package fs
    
    import (
    	"internal/oserror"
    	"time"
    	"unicode/utf8"
    )
    
    // An FS provides access to a hierarchical file system.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/testing/fstest/mapfs.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package fstest
    
    import (
    	"io"
    	"io/fs"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // A MapFS is a simple in-memory file system for use in tests,
    // represented as a map from path names (arguments to Open)
    // to information about the files or directories they represent.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
Back to top