Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for composed (0.19 sec)

  1. doc/go_spec.html

    	The fields are compared in source order, and comparison stops as
    	soon as two field values differ (or all fields have been compared).
    	</li>
    
    	<li>
    	Array types are comparable if their array element types are comparable.
    	Two array values are equal if their corresponding element values are equal.
    	The elements are compared in ascending index order, and comparison stops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		s.breakTo = bEnd
    		var sym *types.Sym
    		var body ir.Nodes
    		if n.Op() == ir.OSWITCH {
    			n := n.(*ir.SwitchStmt)
    			sym = n.Label
    			body = n.Compiled
    		} else {
    			n := n.(*ir.SelectStmt)
    			sym = n.Label
    			body = n.Compiled
    		}
    
    		var lab *ssaLabel
    		if sym != nil {
    			// labeled
    			lab = s.label(sym)
    			lab.breakTarget = bEnd
    		}
    
    		// generate body code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    // name (key). See httpguts.ValidHeaderName for the base rules.
    //
    // Further, http2 says:
    //
    //	"Just as in HTTP/1.x, header field names are strings of ASCII
    //	characters that are compared in a case-insensitive
    //	fashion. However, header field names MUST be converted to
    //	lowercase prior to their encoding in HTTP/2. "
    func http2validWireHeaderFieldName(v string) bool {
    	if len(v) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

              status.value();
          // Subtract the original exterior padding since it doesn't contribute to
          // the gradient. Note that we save one `PadOp` and some unnecessary kernel
          // computations, compared to the `xla::AvgPoolGrad` implementation, by
          // subtracting the original exterior padding before `ReduceWindowOp`
          // instead of trimming the result of `ReduceWindowOp` (the final result is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * ✏ Fix minor typos in `docs/en/docs/async.md`. PR [#5125](https://github.com/tiangolo/fastapi/pull/5125) by [@Ksenofanex](https://github.com/Ksenofanex).
    * 📝 Add external link to docs: "Fastapi, Docker(Docker compose) and Postgres". PR [#5033](https://github.com/tiangolo/fastapi/pull/5033) by [@krishnardt](https://github.com/krishnardt).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top