Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Classify (0.11 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    import "go/token"
    
    // A Diagnostic is a message associated with a source location or range.
    //
    // An Analyzer may return a variety of diagnostics; the optional Category,
    // which should be a constant, may be used to classify them.
    // It is primarily intended to make it easy to look up documentation.
    //
    // All Pos values are interpreted relative to Pass.Fset. If End is
    // provided, the diagnostic is specified to apply to the range between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    	"internal/godebug"
    	"internal/syscall/execenv"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"time"
    )
    
    // Error is returned by [LookPath] when it fails to classify a file as an
    // executable.
    type Error struct {
    	// Name is the file name for which the error occurred.
    	Name string
    	// Err is the underlying error.
    	Err error
    }
    
    func (e *Error) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	GoVersion     string            // Go version for package
    
    	SucceedOnTypecheckFailure bool // awful hack; see #18395 and below
    }
    
    func buildVetConfig(a *Action, srcfiles []string) {
    	// Classify files based on .go extension.
    	// srcfiles does not include raw cgo files.
    	var gofiles, nongofiles []string
    	for _, name := range srcfiles {
    		if strings.HasSuffix(name, ".go") {
    			gofiles = append(gofiles, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. RELEASE.md

        prediction-flavored outputs, in addition to the classification-flavored one.
        Building signatures from these allows TF Serving to honor requests using the
        different APIs (Classify, Regress, and Predict). Furthermore,
        `serving_input_receiver_fn()` may now specify alternative subsets of nodes
        that may act as inputs. This allows, for instance, producing a prediction
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top