Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for describeTo (0.13 sec)

  1. src/testing/fstest/mapfs.go

    // iterating over the entire map, so a MapFS should typically be used with not more
    // than a few hundred entries or directory reads.
    type MapFS map[string]*MapFile
    
    // A MapFile describes a single file in a [MapFS].
    type MapFile struct {
    	Data    []byte      // file content
    	Mode    fs.FileMode // fs.FileInfo.Mode
    	ModTime time.Time   // fs.FileInfo.ModTime
    	Sys     any         // fs.FileInfo.Sys
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    		x = x[1:]
    	}
    	for len(x) > 0 && isOWS(x[len(x)-1]) {
    		x = x[:len(x)-1]
    	}
    	return x
    }
    
    // headerValueContainsToken reports whether v (assumed to be a
    // 0#element, in the ABNF extension described in RFC 7230 section 7)
    // contains token amongst its comma-separated tokens, ASCII
    // case-insensitively.
    func headerValueContainsToken(v string, token string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/analysis.go

    // license that can be found in the LICENSE file.
    
    package analysis
    
    import (
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/types"
    	"reflect"
    )
    
    // An Analyzer describes an analysis function and its options.
    type Analyzer struct {
    	// The Name of the analyzer must be a valid Go identifier
    	// as it may appear in command-line flags, URLs, and so on.
    	Name string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/path/filepath/match.go

    		err = ErrBadPattern
    	}
    	return
    }
    
    // Glob returns the names of all files matching pattern or nil
    // if there is no matching file. The syntax of patterns is the same
    // as in [Match]. The pattern may describe hierarchical names such as
    // /usr/*/bin/ed (assuming the [Separator] is '/').
    //
    // Glob ignores file system errors such as I/O errors reading directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top