Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for has_func (0.11 sec)

  1. src/runtime/pprof/proto.go

    	// Decide what to do about HasInlineFrames and HasLineNumbers.
    	// Also, another approach to handle the mapping entry with
    	// incomplete symbolization results is to duplicate the mapping
    	// entry (but with different Has* fields values) and use
    	// different entries for symbolized locations and unsymbolized locations.
    	if hasFuncs {
    		b.pb.bool(tagMapping_HasFunctions, true)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/crypto/rsa/rsa.go

    // *[PSSOptions] then the PSS algorithm will be used, otherwise PKCS #1 v1.5 will
    // be used. digest must be the result of hashing the input message using
    // opts.HashFunc().
    //
    // This method implements [crypto.Signer], which is an interface to support keys
    // where the private part is kept in, for example, a hardware module. Common
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

        for (Type ty : op.getResultTypes()) {
          shape_attrs.push_back(TF::ShapeAttr::get(rewriter.getContext(),
                                                   mlir::cast<ShapedType>(ty)));
        }
    
        // Clone the `host_func` in the `host_mlir_module` attribute if it exists
        // and use it for `shape_inference_graph` attribute on XlaHostCompute.
        func::FuncOp cloned_func;
        SymbolTable manager(op->getParentOfType<ModuleOp>());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/assign.go

    func walkAssignDotType(n *ir.AssignListStmt, init *ir.Nodes) ir.Node {
    	walkExprListSafe(n.Lhs, init)
    	n.Rhs[0] = walkExpr(n.Rhs[0], init)
    	return n
    }
    
    // walkAssignFunc walks an OAS2FUNC node.
    func walkAssignFunc(init *ir.Nodes, n *ir.AssignListStmt) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    
    	r := n.Rhs[0]
    	walkExprListSafe(n.Lhs, init)
    	r = walkExpr(r, init)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/fmt.go

    	ONE:               4,
    	OSEND:             3,
    	OANDAND:           2,
    	OOROR:             1,
    
    	// Statements handled by stmtfmt
    	OAS:         -1,
    	OAS2:        -1,
    	OAS2DOTTYPE: -1,
    	OAS2FUNC:    -1,
    	OAS2MAPR:    -1,
    	OAS2RECV:    -1,
    	OASOP:       -1,
    	OBLOCK:      -1,
    	OBREAK:      -1,
    	OCASE:       -1,
    	OCONTINUE:   -1,
    	ODCL:        -1,
    	ODEFER:      -1,
    	OFALL:       -1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/symtab.go

    	// findfunctab
    	moduledata.AddAddr(ctxt.Arch, pcln.findfunctab)
    	// minpc, maxpc
    	moduledata.AddAddr(ctxt.Arch, pcln.firstFunc)
    	moduledata.AddAddrPlus(ctxt.Arch, pcln.lastFunc, ldr.SymSize(pcln.lastFunc))
    	// pointers to specific parts of the module
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.text", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.etext", 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/staticinit/sched.go

    	switch n.Op() {
    	default:
    		base.FatalfAt(n.Pos(), "unexpected initialization statement: %v", n)
    	case ir.OAS:
    		n := n.(*ir.AssignStmt)
    		lhs, rhs = []ir.Node{n.X}, n.Y
    	case ir.OAS2DOTTYPE, ir.OAS2FUNC, ir.OAS2MAPR, ir.OAS2RECV:
    		n := n.(*ir.AssignListStmt)
    		if len(n.Lhs) < 2 || len(n.Rhs) != 1 {
    			base.FatalfAt(n.Pos(), "unexpected shape for %v: %v", n.Op(), n)
    		}
    		lhs, rhs = n.Lhs, n.Rhs[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/typecheck.go

    	case *ir.CallExpr:
    		n.Args = list
    	case *ir.ReturnStmt:
    		n.Results = list
    	case *ir.AssignListStmt:
    		if n.Op() != ir.OAS2FUNC {
    			base.Fatalf("rewriteMultiValueCall: invalid op %v", n.Op())
    		}
    		as.SetOp(ir.OAS2FUNC)
    		n.SetOp(ir.OAS2)
    		n.Rhs = make([]ir.Node, len(list))
    		for i, tmp := range list {
    			n.Rhs[i] = AssignConv(tmp, n.Lhs[i].Type(), "assignment")
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/typecheck/stmt.go

    		}
    
    		for i := range lhs {
    			checkLHS(i, nil)
    		}
    		return
    	}
    
    	// x,y,z = f()
    	if cr > len(rhs) {
    		stmt := stmt.(*ir.AssignListStmt)
    		stmt.SetOp(ir.OAS2FUNC)
    		r := rhs[0].(*ir.CallExpr)
    		rtyp := r.Type()
    
    		mismatched := false
    		failed := false
    		for i := range lhs {
    			result := rtyp.Field(i).Type
    			assignType(i, result)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/html.go

    // phase is used for collapsing columns and should be unique across the table.
    func (w *HTMLWriter) WritePhase(phase, title string) {
    	if w == nil {
    		return // avoid generating HTML just to discard it
    	}
    	hash := hashFunc(w.Func)
    	w.pendingPhases = append(w.pendingPhases, phase)
    	w.pendingTitles = append(w.pendingTitles, title)
    	if !bytes.Equal(hash, w.prevHash) {
    		w.flushPhases()
    	}
    	w.prevHash = hash
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
Back to top