Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for defs (0.06 sec)

  1. src/cmd/compile/internal/types2/api.go

    	Defs map[*syntax.Name]Object
    
    	// Uses maps identifiers to the objects they denote.
    	//
    	// For an embedded field, Uses returns the *TypeName it denotes.
    	//
    	// Invariant: Uses[id].Pos() != id.Pos()
    	Uses map[*syntax.Name]Object
    
    	// Implicits maps nodes to their implicitly declared objects, if any.
    	// The following node and object types may appear:
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/python/converter_python_api.cc

                       "defs argument",
                       i);
          return nullptr;
        }
    
        // Parse op def from character array.
        tensorflow::OpDef opdef;
        if (!tensorflow::protobuf::TextFormat::ParseFromString(tf_opdefs, &opdef)) {
          PyErr_Format(
              PyExc_ValueError,
              "Failed to parse opdefs at index %d of custom op defs argument: %s",
              i, tf_opdefs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/BUILD

                "ir/tfl_ops_interface.h.inc",
            ),
            (
                ["-gen-op-interface-defs"],
                "ir/tfl_ops_interface.cc.inc",
            ),
            (
                ["-gen-dialect-decls"],
                "ir/tfl_ops_dialect.h.inc",
            ),
            (
                ["-gen-dialect-defs"],
                "ir/tfl_ops_dialect.cc.inc",
            ),
        ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		return
    	}
    	id, isId := e.(*ast.Ident)
    	if isId && id.Name == "_" {
    		return
    	}
    
    	var typ types.Type
    	if rtok == token.DEFINE {
    		if !isId {
    			return
    		}
    		obj := pass.TypesInfo.Defs[id]
    		if obj == nil {
    			return
    		}
    		typ = obj.Type()
    	} else {
    		typ = pass.TypesInfo.Types[e].Type
    	}
    
    	if typ == nil {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. istio.deps

    Istio Automation <******@****.***> 1718300916 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:36 UTC 2024
    - 335 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      int subgraph_idx = 0;
    
      // Entry functions for signature defs.
      std::vector<FuncOp> entry_functions;
      std::vector<FuncOp> non_entry_functions;
      FuncOp main_fn = module_.lookupSymbol<FuncOp>("main");
      if (main_fn != nullptr) {
        // Treat the main function as a signature def when the given main function
        // contains on the tf.entry_function attribute.
        auto attrs =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/BUILD

    )
    
    cc_library(
        name = "tac-opt_lib",
        testonly = True,
        deps = [
            ":target_aware_conversion",
            "//tensorflow/compiler/mlir:tf_mlir_opt_main",
        ],
        alwayslink = 1,
    )
    
    # Binary with no hardwares linked.
    tf_cc_binary(
        name = "tac-opt",
        testonly = True,
        deps = [
            ":tac-opt_lib",
        ],
    )
    
    # Binary with all backends linked.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/BUILD

        hdrs = [
            "tf_mlir_translate_cl.h",
        ],
        deps = [
            "@llvm-project//llvm:Support",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "export_graphdef",
        srcs = [
            "export_graphdef.cc",
        ],
        hdrs = [
            "export_graphdef.h",
        ],
        visibility = ["//visibility:public"],
        deps = [
            ":export_tf_dialect_op",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top