Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 98 for NP (0.07 sec)

  1. cmd/storage-datatypes_gen.go

    				err = msgp.WrapError(err, "DiskID")
    				return
    			}
    		case "m":
    			z.Metrics, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Metrics")
    				return
    			}
    		case "np":
    			z.NoOp, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "NoOp")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. docs/pl/docs/tutorial/first-steps.md

    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    
    </div>
    
    Jeśli stworzysz swoją aplikację, np.:
    
    ```Python hl_lines="3"
    {!../../../docs_src/first_steps/tutorial002.py!}
    ```
    
    I umieścisz to w pliku `main.py`, to będziesz mógł tak wywołać `uvicorn`:
    
    <div class="termy">
    
    ```console
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/order.go

    	order.free = free
    	mark := order.markTemp()
    	order.edge()
    	order.stmtList(*n)
    	order.popTemp(mark)
    	*n = order.out
    }
    
    // exprInPlace orders the side effects in *np and
    // leaves them as the init list of the final *np.
    // The result of exprInPlace MUST be assigned back to n, e.g.
    //
    //	n.Left = o.exprInPlace(n.Left)
    func (o *orderState) exprInPlace(n ir.Node) ir.Node {
    	var order orderState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Returns which elements of x are NaN.";
    
      let description = [{
    @compatibility(numpy)
    Equivalent to np.isnan
    @end_compatibility
    
    Example:
    
    ```python
    x = tf.constant([5.0, np.nan, 6.8, np.nan, np.inf])
    tf.math.is_nan(x) ==> [False, True, False, True, False]
    ```
      }];
    
      let arguments = (ins
        TF_FloatTensor:$x
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/net/http/server.go

    		p = "/" + p
    	}
    	np := path.Clean(p)
    	// path.Clean removes trailing slash except for root;
    	// put the trailing slash back if necessary.
    	if p[len(p)-1] == '/' && np != "/" {
    		// Fast path for common case of p being the string we want:
    		if len(p) == len(np)+1 && strings.HasPrefix(p, np) {
    			np = p
    		} else {
    			np += "/"
    		}
    	}
    	return np
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/syscall/zsyscall_linux_386.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readlen(fd int, p *byte, np int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 34.7K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_linux_riscv64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readlen(fd int, p *byte, np int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 37.8K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_linux_s390x.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readlen(fd int, p *byte, np int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    			ctxt.Diag("asmins: illegal in mode %d: %v (%d %d)", ctxt.Arch.RegSize*8, p, p.Ft, p.Tt)
    		}
    		n := ab.Len()
    		var np int
    		for np = mark; np < n; np++ {
    			c := ab.At(np)
    			if c != 0xf2 && c != 0xf3 && (c < 0x64 || c > 0x67) && c != 0x2e && c != 0x3e && c != 0x26 {
    				break
    			}
    		}
    		ab.Insert(np, byte(0x40|ab.rexflag))
    	}
    
    	n := ab.Len()
    	for i := len(cursym.R) - 1; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/syscall/zsyscall_linux_amd64.go

    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readlen(fd int, p *byte, np int) (n int, err error) {
    	r0, _, e1 := Syscall(SYS_READ, uintptr(fd), uintptr(unsafe.Pointer(p)), uintptr(np))
    	n = int(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 39.5K bytes
    - Viewed (0)
Back to top