Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for 416 (0.03 sec)

  1. src/internal/chacha8rand/chacha8_arm64.s

    	VADD C.S4, D.S4, C.S4; VEOR B.B16, C.B16, V30.B16; VSHL  $7, V30.S4, B.S4; VSRI $25, V30.S4, B.S4
    
    // block runs 4 ChaCha8 block transformations in the four stripes of the V registers.
    
    // func block(seed *[8]uint32, blocks *[4][16]uint32, counter uint32)
    TEXT ·block<ABIInternal>(SB), NOSPLIT, $16
    	// seed in R0
    	// blocks in R1
    	// counter in R2
    
    	// Load initial constants into top row.
    	MOVD $·chachaConst(SB), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/math/erf_s390x.s

    DATA ·erfrodataL13<> + 392(SB)/8, $-.692229229127016977E-03
    DATA ·erfrodataL13<> + 400(SB)/8, $0.971111253652087188E-04
    DATA ·erfrodataL13<> + 408(SB)/8, $-.119752226272050504E-04
    DATA ·erfrodataL13<> + 416(SB)/8, $0.131662993588532278E-05
    DATA ·erfrodataL13<> + 424(SB)/8, $0.115776482315851236E-07
    DATA ·erfrodataL13<> + 432(SB)/8, $-.780118522218151687E-09
    DATA ·erfrodataL13<> + 440(SB)/8, $-.130465975877241088E-06
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 8.5K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/additional-responses.md

                            "$ref": "#/components/schemas/HTTPValidationError"
                        }
                    }
                }
            }
        }
    }
    ```
    
    🔗 🔗 ➕1️⃣ 🥉 🔘 🗄 🔗:
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/networking/v1alpha1/generated.proto

      // address into 24 bits for the network portion and 8 bits for the host portion.
      // To allocate 256 IPs, set this field to 8 (a /24 mask for IPv4 or a /120 for IPv6).
      // Minimum value is 4 (16 IPs).
      // This field is immutable.
      // +required
      optional int32 perNodeHostBits = 2;
    
      // ipv4 defines an IPv4 IP block in CIDR notation(e.g. "10.0.0.0/8").
      // At least one of ipv4 and ipv6 must be specified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    The schemas are referenced to another place inside the OpenAPI schema:
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    Die Schemas werden von einer anderen Stelle innerhalb des OpenAPI-Schemas referenziert:
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:19:26 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  7. docs/zh/docs/advanced/additional-responses.md

                            "$ref": "#/components/schemas/HTTPValidationError"
                        }
                    }
                }
            }
        }
    }
    
    ```
    **模式被引用到OpenAPI模式中的另一个位置:**
    ```json hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 15:53:39 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-responses.md

                        }
                    }
                }
            }
        }
    }
    ```
    
    Les schémas sont référencés à un autre endroit du modèle OpenAPI :
    
    ```JSON hl_lines="4-16"
    {
        "components": {
            "schemas": {
                "Message": {
                    "title": "Message",
                    "required": [
                        "message"
                    ],
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8_generic.go

    // in any future optimizations.
    package chacha8rand
    
    import (
    	"internal/goarch"
    	"unsafe"
    )
    
    // setup sets up 4 ChaCha8 blocks in b32 with the counter and seed.
    // Note that b32 is [16][4]uint32 not [4][16]uint32: the blocks are interlaced
    // the same way they would be in a 4-way SIMD implementations.
    func setup(seed *[4]uint64, b32 *[16][4]uint32, counter uint32) {
    	// Convert to uint64 to do half as many stores to memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:32:54 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. src/runtime/sys_freebsd_386.s

    #define SYS___sysctl		202
    #define SYS_clock_gettime	232
    #define SYS_nanosleep		240
    #define SYS_issetugid		253
    #define SYS_sched_yield		331
    #define SYS_sigprocmask		340
    #define SYS_kqueue		362
    #define SYS_sigaction		416
    #define SYS_sigreturn		417
    #define SYS_thr_exit		431
    #define SYS_thr_self		432
    #define SYS_thr_kill		433
    #define SYS__umtx_op		454
    #define SYS_thr_new		455
    #define SYS_mmap		477
    #define SYS_cpuset_getaffinity	487
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top