Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for SELECT (2.41 sec)

  1. src/crypto/tls/handshake_server_test.go

    	}
    
    	if !serverHello.secureRenegotiationSupported {
    		t.Errorf("Secure renegotiation extension was not echoed.")
    	}
    }
    
    func TestTLS12OnlyCipherSuites(t *testing.T) {
    	// Test that a Server doesn't select a TLS 1.2-only cipher suite when
    	// the client negotiates TLS 1.1.
    	clientHello := &clientHelloMsg{
    		vers:   VersionTLS11,
    		random: make([]byte, 32),
    		cipherSuites: []uint16{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. src/crypto/tls/tls_test.go

    			serverConfig.MaxVersion = VersionTLS12 // TLSUnique is not defined in TLS 1.3
    			srv := Server(sconn, serverConfig)
    			if err := srv.Handshake(); err != nil {
    				t.Error(err)
    				return
    			}
    			select {
    			case <-parentDone:
    				return
    			case serverTLSUniques <- srv.ConnectionState().TLSUnique:
    			}
    		}
    	}()
    
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	// SupportedProtos is set only if the Application-Layer Protocol
    	// Negotiation Extension is being used (see RFC 7301, Section 3.1).
    	//
    	// Servers can select a protocol by setting Config.NextProtos in a
    	// GetConfigForClient return value.
    	SupportedProtos []string
    
    	// SupportedVersions lists the TLS versions supported by the client.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/load.go

    	PackageOpts
    	requirements *Requirements
    
    	allPatternIsRoot bool // Is the "all" pattern an additional root?
    
    	listRoots func(rs *Requirements) []string
    }
    
    func (ld *loader) reset() {
    	select {
    	case <-ld.work.Idle():
    	default:
    		panic("loader.reset when not idle")
    	}
    
    	ld.roots = nil
    	ld.pkgCache = new(par.Cache[string, *loadPkg])
    	ld.pkgs = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_USECI_SELECTSTRINGS DI_FLAGS = 0x08000000 // Use Class Installer Provided strings in the Select Device Dlg
    	DI_OVERRIDE_INFFLAGS   DI_FLAGS = 0x10000000 // Override INF flags
    	DI_PROPS_NOCHANGEUSAGE DI_FLAGS = 0x20000000 // No Enable/Disable in General Props
    
    	DI_NOSELECTICONS DI_FLAGS = 0x40000000 // No small icons in select device dialogs
    
    	DI_NOWRITE_IDS DI_FLAGS = 0x80000000 // Don't write HW & Compat IDs on install
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    			"file:", "func:t", "switch:", "case:x", // x implicitly declared
    		}},
    		{`package p14; func _() { select{} }`, []string{
    			"file:", "func:",
    		}},
    		{`package p15; func _(c chan int) { select{ case <-c: } }`, []string{
    			"file:", "func:c", "comm:",
    		}},
    		{`package p16; func _(c chan int) { select{ case i := <-c: x := i; _ = x} }`, []string{
    			"file:", "func:c", "comm:i x",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go

    	}
    	return
    }
    
    var libc_lseek_trampoline_addr uintptr
    
    //go:cgo_import_dynamic libc_lseek lseek "libc.so"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 57.5K bytes
    - Viewed (0)
Back to top