Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for NResults (0.11 sec)

  1. src/crypto/x509/x509_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	b, err := SystemCertPool()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !certPoolEqual(a, b) {
    		t.Fatal("two calls to SystemCertPool had different results")
    	}
    	if ok := b.AppendCertsFromPEM([]byte(`
    -----BEGIN CERTIFICATE-----
    MIIDBjCCAe6gAwIBAgIRANXM5I3gjuqDfTp/PYrs+u8wDQYJKoZIhvcNAQELBQAw
    EjEQMA4GA1UEChMHQWNtZSBDbzAeFw0xODAzMjcxOTU2MjFaFw0xOTAzMjcxOTU2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	}
    	seg := segro
    
    	if ctxt.UseRelro() {
    		segrelro := &Segrelrodata
    		if ctxt.LinkMode == LinkExternal && !ctxt.IsAIX() && !ctxt.IsDarwin() {
    			// Using a separate segment with an external
    			// linker results in some programs moving
    			// their data sections unexpectedly, which
    			// corrupts the moduledata. So we use the
    			// rodata segment and let the external linker
    			// sort out a rel.ro segment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. fastapi/applications.py

                bool,
                Doc(
                    """
                    Whether to generate separate OpenAPI schemas for request body and
                    response body when the results would be more precise.
    
                    This is particularly useful when automatically generating clients.
    
                    For example, if you have a model like:
    
                    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    //go:nosplit
    //go:linkname entersyscall
    func entersyscall() {
    	// N.B. getcallerfp cannot be written directly as argument in the call
    	// to reentersyscall because it forces spilling the other arguments to
    	// the stack. This results in exceeding the nosplit stack requirements
    	// on some platforms.
    	fp := getcallerfp()
    	reentersyscall(getcallerpc(), getcallersp(), fp)
    }
    
    func entersyscall_sysmon() {
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top