Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 58 for has_func (0.63 sec)

  1. api/go1.4.txt

    pkg crypto, method (Hash) HashFunc() Hash
    pkg crypto, type Signer interface { Public, Sign }
    pkg crypto, type Signer interface, Public() PublicKey
    pkg crypto, type Signer interface, Sign(io.Reader, []uint8, SignerOpts) ([]uint8, error)
    pkg crypto, type SignerOpts interface { HashFunc }
    pkg crypto, type SignerOpts interface, HashFunc() Hash
    pkg crypto/ecdsa, method (*PrivateKey) Public() crypto.PublicKey
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  2. src/cmd/trace/gstate.go

    // in some way, but it doesn't really matter which stack.
    func (gs *gState[R]) augmentName(stk trace.Stack) {
    	if gs.named {
    		return
    	}
    	if stk == trace.NoStack {
    		return
    	}
    	name := lastFunc(stk)
    	gs.baseName += fmt.Sprintf(" %s", name)
    	gs.named = true
    	gs.isSystemG = trace.IsSystemGoroutine(name)
    }
    
    // setLabel adds an additional label to the goroutine's name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    		sb.SetUint32(ctxt.Arch, int64((i*2+1)*4), startLocations[i])
    	}
    
    	// Final entry of table is just end pc offset.
    	lastFunc := funcs[len(funcs)-1]
    	sb.SetUint32(ctxt.Arch, int64(len(funcs))*2*4, pcOff(lastFunc)+uint32(ldr.SymSize(lastFunc)))
    }
    
    // writeFuncs writes the func structures and pcdata to runtime.functab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/crypto/x509/x509.go

    	signed := tbs
    	hashFunc := sigAlg.hashFunc()
    	if hashFunc != 0 {
    		h := hashFunc.New()
    		h.Write(signed)
    		signed = h.Sum(nil)
    	}
    
    	var signerOpts crypto.SignerOpts = hashFunc
    	if sigAlg.isRSAPSS() {
    		signerOpts = &rsa.PSSOptions{
    			SaltLength: rsa.PSSSaltLengthEqualsHash,
    			Hash:       hashFunc,
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/stmt.go

    		} else {
    			base.Errorf("%v is not a top level statement", n.Op())
    		}
    		ir.Dump("nottop", n)
    		return n
    
    	case ir.OAS,
    		ir.OASOP,
    		ir.OAS2,
    		ir.OAS2DOTTYPE,
    		ir.OAS2RECV,
    		ir.OAS2FUNC,
    		ir.OAS2MAPR,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOPY,
    		ir.OCALLINTER,
    		ir.OCALL,
    		ir.OCALLFUNC,
    		ir.ODELETE,
    		ir.OSEND,
    		ir.OPRINT,
    		ir.OPRINTLN,
    		ir.OPANIC,
    		ir.ORECOVERFP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top