Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 155 for original (0.19 sec)

  1. src/internal/godebug/godebug.go

    // available to other packages. These settings are often used for compatibility
    // tweaks, when we need to change a default behavior but want to let users
    // opt back in to the original. For example GODEBUG=http2server=0 disables
    // HTTP/2 support in the net/http server.
    //
    // In typical usage, code should declare a Setting as a global
    // and then call Value each time the current setting value is needed:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/net/addrselect.go

    		if commonA > commonB {
    			return preferDA
    		}
    		if commonA < commonB {
    			return preferDB
    		}
    	}
    
    	// Rule 10: Otherwise, leave the order unchanged.
    	// If DA preceded DB in the original list, prefer DA.
    	// Otherwise, prefer DB.
    	return false // "equal"
    }
    
    type policyTableEntry struct {
    	Prefix     netip.Prefix
    	Precedence uint8
    	Label      uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 00:24:06 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/net/http/httputil/dump.go

    // an [http.Request]. In particular, the order and case of header field
    // names are lost. The order of values in multi-valued headers is kept
    // intact. HTTP/2 requests are dumped in HTTP/1.x form, not in their
    // original binary representations.
    //
    // If body is true, DumpRequest also returns the body. To do so, it
    // consumes req.Body and then replaces it with a new [io.ReadCloser]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    # commit #19 both end up with unpredictable commit hashes.
    #
    # Fortunately, these commits don't seem to matter for the purpose of reproducing
    # the final branches and heads from the original copy of this repo.
    
    # 19
    hg update -C -r 18
    hg tag --user 'Russ Cox <******@****.***>' --date '2018-07-18T21:24:45-04:00' -m 'Removed tag v2.0.0' --remove v2.0.0
    
    # 20
    hg branch default
    hg update -C -r 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/net/http/46443.md

    [Cookie] now preserves double quotes surrounding a cookie value.
    The new [Cookie.Quoted] field indicates whether the [Cookie.Value]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 14:33:17 UTC 2024
    - 155 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/type.go

    // license that can be found in the LICENSE file.
    
    package syntax
    
    import "go/constant"
    
    // A Type represents a type of Go.
    // All types implement the Type interface.
    // (This type originally lived in types2. We moved it here
    // so we could depend on it from other packages without
    // introducing an import cycle.)
    type Type interface {
    	// Underlying returns the underlying type of a type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_list_issue61423.txt

    stdout '"Version": "v0.0.0-20231114180000-08a4fa6bb9c0"'
    ! stdout '"Origin":'
    
    # However, if we list a specific, stable version, we should get
    # whatever origin metadata the proxy has for the version.
    
    go list -m -json vcs-test.golang.org/git/issue61415.git@v0.0.0-20231114180000-08a4fa6bb9c0
    cp stdout proxy-version.json
    stdout '"Version": "v0.0.0-20231114180000-08a4fa6bb9c0"'
    stdout '"Origin":'
    stdout '"VCS": "git"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    # The package import graph used in this test looks like:
    #
    # a ---- b
    #   \     \
    #    \     \
    #     ----- c ---- d
    #
    # The module dependency graph originally looks like:
    #
    # a ---- b.2
    #   \      \
    #    \      \
    #     ----- c.1 ---- d.2
    #
    # b.1 ---- c.2
    #
    # If we downgrade module d to version 1, we must downgrade b as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. src/cmd/internal/pkgpattern/pkgpattern.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package pkgpattern
    
    import (
    	"regexp"
    	"strings"
    )
    
    // Note: most of this code was originally part of the cmd/go/internal/search
    // package; it was migrated here in order to support the use case of
    // commands other than cmd/go that need to accept package pattern args.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 16:43:40 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  10. src/internal/goexperiment/flags.go

    	//
    	// Requires wrappers (to do ABI translation), and reflect (so
    	// reflection calls use registers).
    	RegabiArgs bool
    
    	// HeapMinimum512KiB reduces the minimum heap size to 512 KiB.
    	//
    	// This was originally reduced as part of PacerRedesign, but
    	// has been broken out to its own experiment that is disabled
    	// by default.
    	HeapMinimum512KiB bool
    
    	// CoverageRedesign enables the new compiler-based code coverage
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 16:19:47 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top