Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Classify (0.72 sec)

  1. 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)
  2. 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)
  3. 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