Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for confirm (0.44 sec)

  1. src/bytes/buffer_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if i != 0 {
    		t.Fatalf("unexpected return from bytes.ReadFrom (1): got: %d, want %d", i, 0)
    	}
    	check(t, "TestReadFromPanicReader (1)", &buf, "")
    
    	// Confirm that when Reader panics, the empty buffer remains empty
    	var buf2 Buffer
    	defer func() {
    		recover()
    		check(t, "TestReadFromPanicReader (2)", &buf2, "")
    	}()
    	buf2.ReadFrom(panicReader{panic: true})
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  2. doc/asm.html

    on the <code>TEXT</code> instruction.
    The pointer information can also be omitted if the
    function contains no call instructions.
    Otherwise, the local stack frame must not contain pointers,
    and the assembly must confirm this fact by executing the
    pseudo-instruction <code>NO_LOCAL_POINTERS</code>.
    Because stack resizing is implemented by moving the stack,
    the stack pointer may change during any function call:
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Nov 28 19:15:27 GMT 2023
    - 36.3K bytes
    - Viewed (0)
  3. api/go1.8.txt

    pkg crypto/tls, type ClientHelloInfo struct, SupportedVersions []uint16
    pkg crypto/tls, type Config struct, GetClientCertificate func(*CertificateRequestInfo) (*Certificate, error)
    pkg crypto/tls, type Config struct, GetConfigForClient func(*ClientHelloInfo) (*Config, error)
    pkg crypto/tls, type Config struct, KeyLogWriter io.Writer
    pkg crypto/tls, type Config struct, VerifyPeerCertificate func([][]uint8, [][]*x509.Certificate) error
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Dec 21 05:25:57 GMT 2016
    - 16.3K bytes
    - Viewed (0)
  4. doc/godebug.md

    [`tls10server` setting](/pkg/crypto/tls/#Config).
    
    Go 1.22 changed the default TLS cipher suites used by clients and servers when
    not explicitly configured, removing the cipher suites which used RSA based key
    exchange. The default can be reverted using the [`tlsrsakex` setting](/pkg/crypto/tls/#Config).
    
    Go 1.22 disabled
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Apr 16 17:29:58 GMT 2024
    - 13.5K bytes
    - Viewed (0)
  5. api/go1.21.txt

    pkg crypto/tls, type AlertError uint8 #44886
    pkg crypto/tls, type Config struct, UnwrapSession func([]uint8, ConnectionState) (*SessionState, error) #60105
    pkg crypto/tls, type Config struct, WrapSession func(ConnectionState, *SessionState) ([]uint8, error) #60105
    pkg crypto/tls, type QUICConfig struct #44886
    pkg crypto/tls, type QUICConfig struct, TLSConfig *Config #44886
    pkg crypto/tls, type QUICConn struct #44886
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Mon Aug 07 09:39:17 GMT 2023
    - 25.6K bytes
    - Viewed (0)
  6. api/go1.7.txt

    pkg crypto/tls, const RenegotiateNever RenegotiationSupport
    pkg crypto/tls, const RenegotiateOnceAsClient = 1
    pkg crypto/tls, const RenegotiateOnceAsClient RenegotiationSupport
    pkg crypto/tls, type Config struct, DynamicRecordSizingDisabled bool
    pkg crypto/tls, type Config struct, Renegotiation RenegotiationSupport
    pkg crypto/tls, type RenegotiationSupport int
    pkg crypto/x509, func SystemCertPool() (*CertPool, error)
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  7. api/go1.11.txt

    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT = 1
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_IMPORT ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG = 10
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_LOAD_CONFIG ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE = 2
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_RESOURCE ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_SECURITY = 4
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
Back to top