Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for _sa (0.02 sec)

  1. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    #define _ka (10*8)
    #define _ke (11*8)
    #define _ki (12*8)
    #define _ko (13*8)
    #define _ku (14*8)
    #define _ma (15*8)
    #define _me (16*8)
    #define _mi (17*8)
    #define _mo (18*8)
    #define _mu (19*8)
    #define _sa (20*8)
    #define _se (21*8)
    #define _si (22*8)
    #define _so (23*8)
    #define _su (24*8)
    
    // Temporary registers
    #define rT1  AX
    
    // Round vars
    #define rpState DI
    #define rpStack SP
    
    #define rDa BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. fastapi/encoders.py

            bool,
            Doc(
                """
                Exclude from the output any fields that start with the name `_sa`.
    
                This is mainly a hack for compatibility with SQLAlchemy objects, they
                store internal SQLAlchemy-specific state in attributes named with `_sa`,
                and those objects can't (and shouldn't be) serialized to JSON.
                """
            ),
        ] = True,
    ) -> Any:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top