Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for compatibility (0.26 sec)

  1. api/README

    go1.txt (and similarly named files) are frozen once a version has been
    shipped. Each file adds new lines but does not remove any.
    
    except.txt lists features that may disappear without breaking true
    compatibility.
    
    Starting with go1.19.txt, each API feature line must end in "#nnnnn"
    giving the GitHub issue number of the proposal issue that accepted
    the new API. This helps with our end-of-cycle audit of new APIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 19:22:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. src/encoding/gob/type.go

    func (t typeId) name() string {
    	if t.gobType() == nil {
    		return "<nil>"
    	}
    	return t.gobType().name()
    }
    
    // CommonType holds elements of all types.
    // It is a historical artifact, kept for binary compatibility and exported
    // only for the benefit of the package's encoding of type descriptors. It is
    // not intended for direct use by clients.
    type CommonType struct {
    	Name string
    	Id   typeId
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  3. src/cmd/nm/nm.go

    	"fmt"
    	"log"
    	"os"
    	"sort"
    
    	"cmd/internal/objfile"
    	"cmd/internal/telemetry"
    )
    
    const helpText = `usage: go tool nm [options] file...
      -n
          an alias for -sort address (numeric),
          for compatibility with other nm commands
      -size
          print symbol size in decimal between address and type
      -sort {address,name,none,size}
          sort output in the given order (default name)
          size orders from largest to smallest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/dir.go

    	}
    	data, err := os.ReadFile(d.modefile)
    	if err != nil {
    		return "local", time.Time{} // default
    	}
    	mode := string(data)
    	mode = strings.TrimSpace(mode)
    
    	// Forward compatibility for https://go.dev/issue/63142#issuecomment-1734025130
    	//
    	// If the modefile contains a date, return it.
    	if idx := strings.Index(mode, " "); idx >= 0 {
    		d, err := time.Parse("2006-01-02", mode[idx+1:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:13:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_tidy_compat.txt

    [exec:patch] cmp go.mod go.mod.tidyResult
    [exec:patch] cmp go.sum go.sum.tidyResult
    
    go list -m all
    cmp stdout m_all.txt
    
    go mod edit -go=1.16
    go list -m all
    cmp stdout m_all.txt
    
    
    # If we explicitly drop compatibility with 1.16, we retain fewer checksums,
    # which gives a cleaner go.sum file but causes 1.16 to fail in readonly mode.
    
    cp go.mod.orig go.mod
    go mod tidy -compat=1.17
    cmp go.mod go.mod.orig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/crypto/cipher/gcm.go

    }
    
    // NewGCMWithNonceSize returns the given 128-bit, block cipher wrapped in Galois
    // Counter Mode, which accepts nonces of the given length. The length must not
    // be zero.
    //
    // Only use this function if you require compatibility with an existing
    // cryptosystem that uses non-standard nonce lengths. All other users should use
    // [NewGCM], which is faster and more resistant to misuse.
    func NewGCMWithNonceSize(cipher Block, size int) (AEAD, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. src/crypto/ecdh/ecdh.go

    	// as the PrivateKey.ECDH method.
    	//
    	// The private method also allow us to expand the ECDH interface with more
    	// methods in the future without breaking backwards compatibility.
    	ecdh(local *PrivateKey, remote *PublicKey) ([]byte, error)
    
    	// privateKeyToPublicKey converts a PrivateKey to a PublicKey. It's exposed
    	// as the PrivateKey.PublicKey method.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/encoding/gob/doc.go

    be predefined or be defined before the value in the stream.
    
    Compatibility: Any future changes to the package will endeavor to maintain
    compatibility with streams encoded using previous versions. That is, any released
    version of this package should be able to decode data written with any previously
    released version, subject to issues such as security fixes. See the Go compatibility
    document for background: https://golang.org/doc/go1compat
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/shift/shift.go

    	if pass.TypesInfo.Types[x].Value != nil {
    		// Ignore shifts of constants.
    		// These are frequently used for bit-twiddling tricks
    		// like ^uint(0) >> 63 for 32/64 bit detection and compatibility.
    		return
    	}
    
    	v := pass.TypesInfo.Types[y].Value
    	if v == nil {
    		return
    	}
    	u := constant.ToInt(v) // either an Int or Unknown
    	amt, ok := constant.Int64Val(u)
    	if !ok {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/crypto/rsa/rsa.go

    	// differently in PKCS #1 and interoperability is sufficiently
    	// important that we mirror this.
    	//
    	// Deprecated: These values are still filled in by Precompute for
    	// backwards compatibility but are not used. Multi-prime RSA is very rare,
    	// and is implemented by this package without CRT optimizations to limit
    	// complexity.
    	CRTValues []CRTValue
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top