Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 454 for defs (0.04 sec)

  1. tensorflow/cc/experimental/libexport/load.h

      // names to their corresponding nodes at load time in order to look them up
      // in constant time.
      tensorflow::StatusOr<const tensorflow::NodeDef*> GetGraphDefNode(
          std::string name);
    
      // Returns a list of function defs in the SavedModel.
      const protobuf::RepeatedPtrField<FunctionDef>& GetFunctionDefs();
    
      // Returns a BundleReader for reading variable values.
      //
      // This TFPackage retains ownership of the underlying reader.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 13 06:33:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/go/types/api_test.go

    			}
    			ident := idents[test.name][0]
    			def := info.Defs[ident]
    			if def == test.obj {
    				t.Fatalf("info.Defs[%s] contains the test object", test.name)
    			}
    			if orig := originObject(test.obj); def != orig {
    				t.Errorf("info.Defs[%s] does not match obj.Origin()", test.name)
    			}
    			if def.Pkg() != test.obj.Pkg() {
    				t.Errorf("Pkg() = %v, want %v", def.Pkg(), test.obj.Pkg())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  3. src/internal/types/errors/codes_test.go

    	file, err := parser.ParseFile(fset, "codes.go", nil, parser.ParseComments)
    	if err != nil {
    		t.Fatal(err)
    	}
    	conf := Config{Importer: importer.Default()}
    	info := &Info{
    		Types: make(map[ast.Expr]TypeAndValue),
    		Defs:  make(map[*ast.Ident]Object),
    		Uses:  make(map[*ast.Ident]Object),
    	}
    	_, err = conf.Check("types", fset, []*ast.File{file}, info)
    	if err != nil {
    		t.Fatal(err)
    	}
    	for _, decl := range file.Decls {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:41:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass.cc

    #include "tensorflow/compiler/jit/cluster_scoping_pass.h"
    
    #include "absl/algorithm/container.h"
    #include "absl/container/flat_hash_set.h"
    #include "absl/strings/str_cat.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    #include "tensorflow/core/framework/node_def_util.h"
    #include "tensorflow/core/graph/algorithm.h"
    
    namespace tensorflow {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. src/go/ast/scope.go

    // flag to disable syntactic object resolution (which also saves CPU
    // and memory), and instead use the type checker [go/types] if object
    // resolution is desired. See the Defs, Uses, and Implicits fields of
    // the [types.Info] struct for details.
    type Object struct {
    	Kind ObjKind
    	Name string // declared name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/rangefunc/rewrite.go

    	n := syntax.NewName(pos, name)
    	tv := syntax.TypeAndValue{Type: typ}
    	tv.SetIsValue()
    	n.SetTypeInfo(tv)
    	r.info.Defs[n] = obj
    	return obj, n
    }
    
    func (r *rewriter) generateParamName(results []*syntax.Field, i int) {
    	obj, n := r.sig.RenameResult(results, i)
    	r.info.Defs[n] = obj
    }
    
    // declVar declares a variable with a given name type and initializer value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    }
    
    func canonicalMethod(pass *analysis.Pass, id *ast.Ident) {
    	// Expected input/output.
    	expect, ok := canonicalMethods[id.Name]
    	if !ok {
    		return
    	}
    
    	// Actual input/output
    	sign := pass.TypesInfo.Defs[id].Type().(*types.Signature)
    	args := sign.Params()
    	results := sign.Results()
    
    	// Special case: WriteTo with more than one argument,
    	// not trying at all to implement io.WriterTo,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/BUILD

        tbl_outs = [
            (
                ["-gen-op-decls"],
                "ir/tfr_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "ir/tfr_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "ir/tfr_ops.td",
        deps = [
            ":tfr_ops_td_files",
        ],
    )
    
    gentbl_cc_library(
        name = "tfr_decompose_inc_gen",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/users/users_linux.go

    	klogLevel = 5
    
    	// noshell holds a path to a binary to disable shell login.
    	noshell = "/bin/false"
    
    	// These are constants for the default system paths on Linux.
    	fileEtcLoginDefs = "/etc/login.defs"
    	fileEtcPasswd    = "/etc/passwd"
    	fileEtcGroup     = "/etc/group"
    )
    
    var (
    	// these entries hold the users and groups to create as defined in:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 20.7K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadpe/ldpe.go

    // "__imp_XXX" a references to "XXX", however this doesn't work well
    // with more modern compilers, where you can sometimes see import
    // symbols that are defs (as opposed to external refs).
    //
    // The main actions taken below are to search for references to
    // SDYNIMPORT symbols in host object text/data sections and flag the
    // symbols for later fixup. When we see a reference to an import
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top