Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for funcname (0.51 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kube/inject/inject.go

    	}
    	namespace := metadata.Namespace
    	if namespace == "" {
    		namespace = deploymentMetadata.Namespace
    	}
    
    	var fullName string
    	if deploymentMetadata.Namespace != "" {
    		fullName = fmt.Sprintf("%s/%s", deploymentMetadata.Namespace, name)
    	} else {
    		fullName = name
    	}
    
    	kind := typeMeta.Kind
    
    	// Skip injection when host networking is enabled. The problem is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (1)
  9. src/os/file.go

    func DirFS(dir string) fs.FS {
    	return dirFS(dir)
    }
    
    type dirFS string
    
    func (dir dirFS) Open(name string) (fs.File, error) {
    	fullname, err := dir.join(name)
    	if err != nil {
    		return nil, &PathError{Op: "open", Path: name, Err: err}
    	}
    	f, err := Open(fullname)
    	if err != nil {
    		// DirFS takes a string appropriate for GOOS,
    		// while the name argument here is always slash separated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

            [](const std::string& input_name, const StringRef fn_name) {
              return absl::StrCat(fn_name.str(), "_", input_name);
            });
      }
      if (need_prefix_for_output_name) {
        absl::c_transform(
            output_name_vec, fn_output_name_vec, output_name_vec.begin(),
            [](const std::string& output_name, const StringRef fn_name) {
              return absl::StrCat(fn_name.str(), "_", output_name);
            });
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top