Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 147 for defs (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/jit/xla_device.cc

               /*include_compilation_only_kernels=*/false)) {
        KernelDef* def = new KernelDef(*jit_def);
        const std::unordered_set<std::string>* constant_inputs =
            XlaOpRegistry::CompileTimeConstantInputArgNames(def->op());
    
        for (const std::string& arg_name : *constant_inputs) {
          def->add_host_memory_arg(arg_name);
        }
    
        def->set_device_type(device);
        registrations->op_kernel_registrars.emplace_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/internal/coverage/cfile/emit.go

    // captureOsArgs converts os.Args() into the format we use to store
    // this info in the counter data file (counter data file "args"
    // section is a generic key-value collection). See the 'args' section
    // in internal/coverage/defs.go for more info. The args map
    // is also used to capture GOOS + GOARCH values as well.
    func captureOsArgs() map[string]string {
    	m := make(map[string]string)
    	m["argc"] = strconv.Itoa(len(os.Args))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  8. build/common.sh

      LOCAL_OUTPUT_BUILD_CONTEXT="${LOCAL_OUTPUT_IMAGE_STAGING}/${KUBE_BUILD_IMAGE}"
    
      kube::version::get_version_vars
      kube::version::save_version_vars "${KUBE_ROOT}/.dockerized-kube-version-defs"
    
      # Without this, the user's umask can leak through.
      umask 0022
    }
    
    # ---------------------------------------------------------------------------
    # Utility functions
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/go/types/check.go

    	ast.Fprint(&buf, token.NewFileSet(), expr, ast.NotNilFilter)
    	panic(buf.String())
    }
    
    func (check *Checker) recordDef(id *ast.Ident, obj Object) {
    	assert(id != nil)
    	if m := check.Defs; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordUse(id *ast.Ident, obj Object) {
    	assert(id != nil)
    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/check.go

    		return x
    	case *syntax.SelectorExpr:
    		return x.Sel
    	}
    	panic("instantiated ident not found")
    }
    
    func (check *Checker) recordDef(id *syntax.Name, obj Object) {
    	assert(id != nil)
    	if m := check.Defs; m != nil {
    		m[id] = obj
    	}
    }
    
    func (check *Checker) recordUse(id *syntax.Name, obj Object) {
    	assert(id != nil)
    	assert(obj != nil)
    	if m := check.Uses; m != nil {
    		m[id] = obj
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top