Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 133 for livable (0.29 sec)

  1. src/crypto/tls/example_test.go

    	// verify the peer's certificate.
    
    	// Client side configuration.
    	_ = &tls.Config{
    		// Set InsecureSkipVerify to skip the default validation we are
    		// replacing. This will not disable VerifyConnection.
    		InsecureSkipVerify: true,
    		VerifyConnection: func(cs tls.ConnectionState) error {
    			opts := x509.VerifyOptions{
    				DNSName:       cs.ServerName,
    				Intermediates: x509.NewCertPool(),
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    		buf.Flush()
    		conn.Close()
    	}))
    
    	// Our test server above is sending back bogus data after the
    	// response (the "0\r\n\r\n" part), which causes the Transport
    	// code to log spam. Disable keep-alives so we never even try
    	// to reuse the connection.
    	cst.tr.DisableKeepAlives = true
    
    	res, err := cst.c.Get(cst.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if res.Body != NoBody {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. src/runtime/debug/stack.go

    // There is only one additional file: calling SetCrashOutput again overrides
    // any earlier call.
    // SetCrashOutput duplicates f's file descriptor, so the caller may safely
    // close f as soon as SetCrashOutput returns.
    // To disable this additional crash output, call SetCrashOutput(nil).
    // If called concurrently with a crash, some in-progress output may be written
    // to the old file even after an overriding SetCrashOutput returns.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/path/filepath/path_windows_test.go

    //	1 - Disable 8dot3 name creation on all volumes on the system
    //	2 - Set 8dot3 name creation on a per volume basis
    //	3 - Disable 8dot3 name creation on all volumes except the system volume
    //
    // If global flag is set to 2, then per-volume flag needs to be examined:
    //
    //	0 - Enable 8dot3 name creation on this volume
    //	1 - Disable 8dot3 name creation on this volume
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/universe.go

    	_Copy:    {"copy", 2, false, statement},
    	_Delete:  {"delete", 2, false, statement},
    	_Imag:    {"imag", 1, false, expression},
    	_Len:     {"len", 1, false, expression},
    	_Make:    {"make", 1, true, expression},
    	// To disable max/min, remove the next two lines.
    	_Max:     {"max", 1, true, expression},
    	_Min:     {"min", 1, true, expression},
    	_New:     {"new", 1, false, expression},
    	_Panic:   {"panic", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/go/types/universe.go

    	_Copy:    {"copy", 2, false, statement},
    	_Delete:  {"delete", 2, false, statement},
    	_Imag:    {"imag", 1, false, expression},
    	_Len:     {"len", 1, false, expression},
    	_Make:    {"make", 1, true, expression},
    	// To disable max/min, remove the next two lines.
    	_Max:     {"max", 1, true, expression},
    	_Min:     {"min", 1, true, expression},
    	_New:     {"new", 1, false, expression},
    	_Panic:   {"panic", 1, false, statement},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/security.go

    	re(`-Wl,--(no-)?as-needed`),
    	re(`-Wl,-Bdynamic`),
    	re(`-Wl,-berok`),
    	re(`-Wl,-Bstatic`),
    	re(`-Wl,-Bsymbolic-functions`),
    	re(`-Wl,-O[0-9]+`),
    	re(`-Wl,-d[ny]`),
    	re(`-Wl,--disable-new-dtags`),
    	re(`-Wl,-e[=,][a-zA-Z0-9]+`),
    	re(`-Wl,--enable-new-dtags`),
    	re(`-Wl,--end-group`),
    	re(`-Wl,--(no-)?export-dynamic`),
    	re(`-Wl,-E`),
    	re(`-Wl,-framework,[^,@\-][^,]+`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/internal/godebug/godebug.go

    // which is used for generating and checking various documentation.
    // If the name is not listed in that table, New will succeed but calling Value
    // on the returned Setting will panic.
    // To disable that panic for access to an undocumented setting,
    // prefix the name with a #, as in godebug.New("#gofsystrace").
    // The # is a signal to New but not part of the key used in $GODEBUG.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. src/runtime/debug/garbage.go

    // nearly continuously. However, the application may still make
    // progress.
    //
    // The memory limit is always respected by the Go runtime, so to
    // effectively disable this behavior, set the limit very high.
    // [math.MaxInt64] is the canonical value for disabling the limit,
    // but values much greater than the available memory on the underlying
    // system work just as well.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/sym.go

    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package obj
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top