Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for defs (0.03 sec)

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

    // TODO(adonovan): make this a library function or method of Info.
    func imported(info *types.Info, spec *ast.ImportSpec) *types.Package {
    	obj, ok := info.Implicits[spec]
    	if !ok {
    		obj = info.Defs[spec.Name] // renaming import
    	}
    	return obj.(*types.PkgName).Imported()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.h

    #define TENSORFLOW_COMPILER_JIT_COMPILABILITY_CHECK_UTIL_H_
    
    #include <string>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/string_view.h"
    #include "absl/types/optional.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/device_util.h"
    #include "tensorflow/compiler/jit/flags.h"
    #include "tensorflow/compiler/jit/resource_operation_safety_analysis.h"
    #include "tensorflow/compiler/tf2xla/const_analysis.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/BUILD

            (
                ["-gen-op-decls"],
                "runtime_fallback_ops.h.inc",
            ),
            (
                ["-gen-op-defs"],
                "runtime_fallback_ops.cc.inc",
            ),
        ],
        tblgen = "@llvm-project//mlir:mlir-tblgen",
        td_file = "runtime_fallback/runtime_fallback_ops.td",
        deps = [":runtime_fallback_ops_td_files"],
    )
    
    cc_library(
        name = "runtime_fallback_opdefs",
        srcs = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    			return false
    		}
    		if n.End() > pos {
    			return n.Pos() <= pos
    		}
    		ident, ok := n.(*ast.Ident)
    		if !ok || ident.Name == "_" {
    			return true
    		}
    		obj := info.Defs[ident]
    		if obj == nil || obj.Type() == nil {
    			return true
    		}
    		if _, ok := obj.(*types.TypeName); ok {
    			return true
    		}
    		// Prevent duplicates in matches' values.
    		if _, ok = seen[obj]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    		Sizes:     types.SizesFor("gc", build.Default.GOARCH), // TODO(adonovan): use cfg.Compiler
    		GoVersion: cfg.GoVersion,
    	}
    	info := &types.Info{
    		Types:      make(map[ast.Expr]types.TypeAndValue),
    		Defs:       make(map[*ast.Ident]types.Object),
    		Uses:       make(map[*ast.Ident]types.Object),
    		Implicits:  make(map[ast.Node]types.Object),
    		Instances:  make(map[*ast.Ident]types.Instance),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/resource_operation_safety_analysis_test.cc

    #include "tensorflow/cc/ops/functional_ops.h"
    #include "tensorflow/cc/ops/resource_variable_ops.h"
    #include "tensorflow/cc/ops/sendrecv_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/tf2xla/xla_op_kernel.h"
    #include "tensorflow/compiler/tf2xla/xla_op_registry.h"
    #include "tensorflow/core/common_runtime/graph_constructor.h"
    #include "tensorflow/core/framework/node_def_util.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 28 16:53:59 UTC 2020
    - 18.7K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/lex/input.go

    	if tok != scanner.Ident {
    		in.expectText("expected identifier after '#'")
    	}
    	if !in.enabled() {
    		// Can only start including again if we are at #else or #endif but also
    		// need to keep track of nested #if[n]defs.
    		// We let #line through because it might affect errors.
    		switch in.Stack.Text() {
    		case "else", "endif", "ifdef", "ifndef", "line":
    			// Press on.
    		default:
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/check_test.go

    	}
    
    	// Provide Config.Info with all maps so that info recording is tested.
    	info := Info{
    		Types:        make(map[syntax.Expr]TypeAndValue),
    		Instances:    make(map[*syntax.Name]Instance),
    		Defs:         make(map[*syntax.Name]Object),
    		Uses:         make(map[*syntax.Name]Object),
    		Implicits:    make(map[syntax.Node]Object),
    		Selections:   make(map[*syntax.SelectorExpr]*Selection),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. src/go/types/check_test.go

    	}
    
    	// Provide Config.Info with all maps so that info recording is tested.
    	info := Info{
    		Types:        make(map[ast.Expr]TypeAndValue),
    		Instances:    make(map[*ast.Ident]Instance),
    		Defs:         make(map[*ast.Ident]Object),
    		Uses:         make(map[*ast.Ident]Object),
    		Implicits:    make(map[ast.Node]Object),
    		Selections:   make(map[*ast.SelectorExpr]*Selection),
    		Scopes:       make(map[ast.Node]*Scope),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/partially_decluster_pass_test.cc

    #include "tensorflow/cc/ops/control_flow_ops_internal.h"
    #include "tensorflow/cc/ops/function_ops.h"
    #include "tensorflow/cc/ops/sendrecv_ops.h"
    #include "tensorflow/cc/ops/standard_ops.h"
    #include "tensorflow/compiler/jit/defs.h"
    #include "tensorflow/compiler/jit/test_util.h"
    #include "tensorflow/compiler/jit/xla_cluster_util.h"
    #include "tensorflow/compiler/tf2xla/cc/ops/xla_ops.h"
    #include "tensorflow/compiler/tf2xla/xla_op_kernel.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
Back to top