Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for addTag (0.15 sec)

  1. doc/next/6-stdlib/99-minor/crypto/tls/66214.md

    3DES cipher suites were removed from the default list used when
    [Config.CipherSuites] is nil. The default can be reverted adding `tls3des=1` to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 178 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/match.go

    			t.RegionID = Region(x.region)
    		}
    		return true
    	}
    	return false
    }
    
    // Maximize returns a new tag with missing tags filled in.
    func (t Tag) Maximize() (Tag, error) {
    	return addTags(t)
    }
    
    func addTags(t Tag) (Tag, error) {
    	// We leave private use identifiers alone.
    	if t.IsPrivateUse() {
    		return t, nil
    	}
    	if t.ScriptID != 0 && t.RegionID != 0 {
    		if t.LangID != 0 {
    			// already fully specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/README.vendor

    Vendored packages are internally renamed with a "vendor/" prefix
    to preserve the invariant that all packages have distinct paths.
    This is necessary to avoid compiler and linker conflicts. Adding
    a "vendor/" prefix also maintains the invariant that standard
    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa_s390x.go

    		priv.D.FillBytes(params[3*blockSize : 4*blockSize])
    		k.FillBytes(params[4*blockSize : 5*blockSize])
    		// Convert verify function code into a sign function code by adding 8.
    		// We also need to set the 'deterministic' bit in the function code, by
    		// adding 128, in order to stop the instruction using its own random number
    		// generator in addition to the random number we supply.
    		switch kdsa(functionCode+136, &params) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/02-pkgsite-removal.yml

            If you have deleted your repo, please recreate it and publish a retraction.
    
            Retracting a module version involves adding a retract directive to your go.mod file and publishing a new version.
            For example: https://github.com/jba/retract-demo/blob/main/go.mod#L5-L8.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/cmd/pprof/pprof.go

    func adjustURL(source string, duration, timeout time.Duration) (string, time.Duration) {
    	u, err := url.Parse(source)
    	if err != nil || (u.Host == "" && u.Scheme != "" && u.Scheme != "file") {
    		// Try adding http:// to catch sources of the form hostname:port/path.
    		// url.Parse treats "hostname" as the scheme.
    		u, err = url.Parse("http://" + source)
    	}
    	if err != nil || u.Host == "" {
    		return "", 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/expvar/expvar.go

    // /debug/vars in JSON format. As of Go 1.22, the /debug/vars request must
    // use GET.
    //
    // Operations to set or modify these public variables are atomic.
    //
    // In addition to adding the HTTP handler, this package registers the
    // following variables:
    //
    //	cmdline   os.Args
    //	memstats  runtime.Memstats
    //
    // The package is sometimes only imported for the side effect of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/sizes.go

    	"mipsle":   {4, 4},
    	"mips64":   {8, 8},
    	"mips64le": {8, 8},
    	"ppc64":    {8, 8},
    	"ppc64le":  {8, 8},
    	"riscv64":  {8, 8},
    	"s390x":    {8, 8},
    	"sparc64":  {8, 8},
    	"wasm":     {8, 8},
    	// When adding more architectures here,
    	// update the doc string of SizesFor below.
    }
    
    // SizesFor returns the Sizes used by a compiler for an architecture.
    // The result is nil if a compiler/architecture pair is not known.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/composite/composite.go

    				if _, ok := e.(*ast.KeyValueExpr); !ok {
    					allKeyValue = false
    					if i >= strct.NumFields() {
    						break
    					}
    					field := strct.Field(i)
    					if !field.Exported() {
    						// Adding unexported field names for structs not defined
    						// locally will not work.
    						suggestedFixAvailable = false
    						break
    					}
    					missingKeys = append(missingKeys, analysis.TextEdit{
    						Pos:     e.Pos(),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top