Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cfml (0.2 sec)

  1. cmd/common-main.go

    	ctxt.ConsoleAddr = ctx.GlobalString("console-address")
    	if ctxt.ConsoleAddr == "" {
    		ctxt.ConsoleAddr = ctx.String("console-address")
    	}
    
    	if cxml := ctx.String("crossdomain-xml"); cxml != "" {
    		buf, err := os.ReadFile(cxml)
    		if err != nil {
    			return err
    		}
    		ctxt.CrossDomainXML = string(buf)
    	}
    
    	// Check "no-compat" flag from command line argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    		// Print outgoing edges.
    		for _, out := range n.Out.Sort() {
    			c, _ := measurement.Scale(out.Weight, o.SampleUnit, o.OutputUnit)
    			callee := out.Dest
    			fmt.Fprintln(w, "cfl="+callgrindName(files, callee.Info.File))
    			fmt.Fprintln(w, "cfn="+callgrindName(names, nodeNames[callee]))
    			// pprof doesn't have a flat weight for a call, leave as 0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  3. src/crypto/x509/x509_test.go

    	utf8KeyBytes, _ := base...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    This op uses the algorithm by Marsaglia et al. to acquire samples via
    transformation-rejection from pairs of uniform and normal random variables.
    See http://dl.acm.org/citation.cfm?id=358414
      }];
    
      let arguments = (ins
        Arg<TF_I32OrI64Tensor, [{1-D integer tensor. Shape of independent samples to draw from each
    distribution described by the shape parameters given in alpha.}]>:$shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top