Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 84 for funcname (0.16 sec)

  1. pilot/pkg/config/file/store.go

    	return kubeResourceKey{
    		kind:     r.schema.Kind(),
    		fullName: r.fullName(),
    	}
    }
    
    func (r *kubeResource) fullName() resource.FullName {
    	return resource.NewFullName(resource.Namespace(r.config.Namespace),
    		resource.LocalName(r.config.Name))
    }
    
    type kubeResourceKey struct {
    	fullName resource.FullName
    	kind     string
    }
    
    var _ model.ConfigStore = &KubeSource{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_quantize.cc

      // is specified in the `quantize_allowlist`.
      std::pair<std::optional<double>, std::optional<double>>
      GetMinMaxValuesForArgument(llvm::StringRef func_name, int index) {
        if (func_name == quant_specs_.target_func) {
          return quant_specs_.input_ranges[index];
        } else {
          return {0.0, 255.0};
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

      // counter.
      std::string CreateNewFuncName(const StringRef func_name,
                                    SymbolTable &symbol_table) const {
        int suffix_id = 0;
        std::string new_func_name = absl::StrCat(kStablehloFuncNamePrefix, "_",
                                                 func_name.str(), "_", suffix_id);
        while (symbol_table.lookup(new_func_name)) {
          suffix_id++;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	fn, _ = typeutil.Callee(pass.TypesInfo, call).(*types.Func)
    	if fn == nil {
    		return nil, 0
    	}
    
    	_, ok := isPrint[fn.FullName()]
    	if !ok {
    		// Next look up just "printf", for use with -printf.funcs.
    		_, ok = isPrint[strings.ToLower(fn.Name())]
    	}
    	if ok {
    		if fn.FullName() == "fmt.Errorf" {
    			kind = KindErrorf
    		} else if strings.HasSuffix(fn.Name(), "f") {
    			kind = KindPrintf
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/get_compiler_ir.cc

     * captured inputs.
     */
    absl::StatusOr<std::string> GetCompilerIr(
        IrExportStage stage, ProcessFunctionLibraryRuntime* pflr,
        absl::string_view func_name, Device* dev, EagerContext* context,
        absl::Span<const ArgShapeAndDType> input_arg_shape_and_dtype,
        absl::Span<const TensorHandle* const> input_handles,
        CompilerArgSource compiler_arg_source) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

                                  node_name_regex)) {
                continue;
              }
            }
    
            if (!unit.func_name().empty()) {
              const RE2 func_name_regex(unit.func_name());
              if (!RE2::FullMatch(quantization_unit.value().func_name(),
                                  func_name_regex)) {
                continue;
              }
            }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/asmdecl/asmdecl.go

    						fn = nil
    						fnName = ""
    						abi = ""
    						continue
    					}
    				}
    				// Trim off optional ABI selector.
    				fnName, abi = trimABI(fnName)
    				flag := m[3]
    				fn = knownFunc[fnName][arch]
    				if fn != nil {
    					size, _ := strconv.Atoi(m[5])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  8. istioctl/pkg/precheck/precheck.go

    						break
    					}
    				}
    			}
    		}
    		if scopingImpacted {
    			res := &resource.Instance{
    				Origin: &legacykube.Origin{
    					Type: config.GroupVersionKind(deployment.GroupVersionKind()),
    					FullName: resource.FullName{
    						Namespace: resource.Namespace(deployment.GetNamespace()),
    						Name:      resource.LocalName(deployment.GetName()),
    					},
    					ResourceVersion: resource.Version(deployment.GetResourceVersion()),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_unified_experimental_graph.cc

      }
      Status SetAttrFunctionName(const char* attr_name, const char* value,
                                 size_t length) override {
        tensorflow::NameAttrList func_name;
        func_name.set_name(string(value, value + length));
        op_->node_builder.Attr(attr_name, func_name);
        return absl::OkStatus();
      }
      Status SetAttrTensor(const char* attr_name,
                           AbstractTensorInterface* tensor) override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    		}
    	}
    }
    
    func checkExampleName(pass *analysis.Pass, fn *ast.FuncDecl) {
    	fnName := fn.Name.Name
    	if params := fn.Type.Params; len(params.List) != 0 {
    		pass.Reportf(fn.Pos(), "%s should be niladic", fnName)
    	}
    	if results := fn.Type.Results; results != nil && len(results.List) != 0 {
    		pass.Reportf(fn.Pos(), "%s should return nothing", fnName)
    	}
    	if tparams := fn.Type.TypeParams; tparams != nil && len(tparams.List) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top