Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 32 of 32 for auditing (0.1 sec)

  1. docs/en/docs/async.md

    ## `async` and `await`
    
    Modern versions of Python have a very intuitive way to define asynchronous code. This makes it look just like normal "sequential" code and do the "awaiting" for you at the right moments.
    
    When there is an operation that will require waiting before giving the results and has support for these new Python features, you can code it like:
    
    ```Python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. src/encoding/json/decode.go

    	return d.off - 1
    }
    
    // phasePanicMsg is used as a panic message when we end up with something that
    // shouldn't happen. It can indicate a bug in the JSON decoder, or that
    // something is editing the data slice while the decoder executes.
    const phasePanicMsg = "JSON decoder out of sync - data changing underfoot?"
    
    func (d *decodeState) init(data []byte) *decodeState {
    	d.data = data
    	d.off = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
Back to top