Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 32 for Classify (0.11 sec)

  1. tensorflow/cc/saved_model/testdata/half_plus_two_pbtxt/00000123/saved_model.pbtxt

                dim {
                  size: -1
                }
                dim {
                  size: 1
                }
              }
            }
          }
          method_name: "tensorflow/serving/classify"
        }
      }
      signature_def {
        key: "classify_x_to_y"
        value {
          inputs {
            key: "inputs"
            value {
              name: "tf_example:0"
              dtype: DT_STRING
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 26 01:10:27 UTC 2017
    - 46.9K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/garbagecollector.go

    			"item", item.identity,
    			"owner", reference,
    		)
    		gc.absentOwnerCache.Add(absentOwnerCacheKey)
    		return true, nil, nil
    	}
    	return false, owner, nil
    }
    
    // classify the latestReferences to three categories:
    // solid: the owner exists, and is not "waitingForDependentsDeletion"
    // dangling: the owner does not exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. pilot/pkg/model/virtualservice.go

    	delegatesMap := map[types.NamespacedName]config.Config{}
    	delegatesExportToMap := make(map[types.NamespacedName]sets.Set[visibility.Instance])
    	// root virtualservices with delegate
    	var rootVses []config.Config
    
    	// 1. classify virtualservices
    	for _, vs := range vServices {
    		rule := vs.Spec.(*networking.VirtualService)
    		// it is delegate, add it to the indexer cache along with the exportTo for the delegate
    		if len(rule.Hosts) == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // An object path is a textual and (with training) human-readable encoding
    // of a sequence of destructuring operators, starting from a types.Package.
    // The sequences represent a path through the package/object/type graph.
    // We classify these operators by their type:
    //
    //	PO package->object	Package.Scope.Lookup
    //	OT  object->type 	Object.Type
    //	TT    type->type 	Type.{Elem,Key,Params,Results,Underlying} [EKPRU]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    		ctx := trace.StartGoroutine(ctx)
    		go func(p string, r *result) {
    			r.QueryResult, r.err = queryModule(ctx, p)
    			wg.Done()
    		}(p, &results[i])
    	}
    	wg.Wait()
    
    	// Classify the results. In case of failure, identify the error that the user
    	// is most likely to find helpful: the most useful class of error at the
    	// longest matching path.
    	var (
    		noPackage      *PackageNotInModuleError
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	// 11.8: Single-Precision Floating-Point Compare Instructions
    	AFEQS & obj.AMask: rFFIEncoding,
    	AFLTS & obj.AMask: rFFIEncoding,
    	AFLES & obj.AMask: rFFIEncoding,
    
    	// 11.9: Single-Precision Floating-Point Classify Instruction
    	AFCLASSS & obj.AMask: rFIEncoding,
    
    	// 12.3: Double-Precision Load and Store Instructions
    	AFLD & obj.AMask: iFEncoding,
    	AFSD & obj.AMask: sFEncoding,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/crypto/tls/tls_test.go

    	if ne := err.(net.Error); ne.Temporary() != false {
    		t.Error("Write timed out but incorrectly classified the error as Temporary")
    	}
    	if !isTimeoutError(err) {
    		t.Error("Write timed out but did not classify the error as a Timeout")
    	}
    }
    
    type readerFunc func([]byte) (int, error)
    
    func (f readerFunc) Read(b []byte) (int, error) { return f(b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/trace/order.go

    	// string may change across generations, but we care about checking
    	// the value itself.
    	taskID TaskID
    	name   string
    }
    
    // rangeType is a way to classify special ranges of time.
    //
    // These typically correspond 1:1 with "Begin" events, but
    // they may have an optional subtype that describes the range
    // in more detail.
    type rangeType struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. 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)
Back to top