Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for Checksum (1.37 sec)

  1. src/cmd/link/testdata/pe-llvm/main.go

    //     [ 1](sec  1)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$01
    //     AUX scnlen 0x68 nreloc 1 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 3](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 1) 0x00000000 .rsrc$02
    //     AUX scnlen 0x18 nreloc 0 nlnno 0 checksum 0x0 assoc 0 comdat 0
    //     [ 5](sec  2)(fl 0x00)(ty   0)(scl   3) (nx 0) 0x00000000 $R000000
    //     RELOCATION RECORDS FOR [.rsrc$01]:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 26 18:15:09 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/server.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sumdb implements the HTTP protocols for serving or accessing a module checksum database.
    package sumdb
    
    import (
    	"context"
    	"net/http"
    	"os"
    	"strings"
    
    	"golang.org/x/mod/internal/lazyregexp"
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/sumdb/tlog"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. src/compress/zlib/reader_test.go

    	{
    		"truncated empty",
    		"",
    		[]byte{},
    		nil,
    		io.ErrUnexpectedEOF,
    	},
    	{
    		"truncated dict",
    		"",
    		[]byte{0x78, 0xbb},
    		[]byte{0x00},
    		io.ErrUnexpectedEOF,
    	},
    	{
    		"truncated checksum",
    		"",
    		[]byte{0x78, 0xbb, 0x00, 0x01, 0x00, 0x01, 0xca, 0x48,
    			0xcd, 0xc9, 0xc9, 0xd7, 0x51, 0x28, 0xcf, 0x2f,
    			0xca, 0x49, 0x01, 0x04, 0x00, 0x00, 0xff, 0xff,
    		},
    		[]byte{0x00},
    		io.ErrUnexpectedEOF,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 02:16:17 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/gover/version.go

    	// ones. See https://golang.org/issue/45965.
    	SeparateIndirectVersion = "1.17"
    
    	// tidyGoModSumVersion is the Go version at which
    	// 'go mod tidy' preserves go.mod checksums needed to build test dependencies
    	// of packages in "all", so that 'go test all' can be run without checksum
    	// errors.
    	// See https://go.dev/issue/56222.
    	TidyGoModSumVersion = "1.21"
    
    	// goStrictVersion is the Go version at which the Go versions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/compact/parents.go

    	0x02f7, 0x0000, 0x02f9, 0x02f9, 0x02f9, 0x02f9, 0x02f9, 0x0000,
    	// Entry 300 - 33F
    	0x02ff, 0x0300, 0x02ff, 0x0000, 0x0303, 0x0051, 0x00e6,
    } // Size: 1574 bytes
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/sumdb/dirhash/hash.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package dirhash defines hashes over directory trees.
    // These hashes are recorded in go.sum files and in the Go checksum database,
    // to allow verifying that a newly-downloaded module has the expected content.
    package dirhash
    
    import (
    	"archive/zip"
    	"crypto/sha256"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"os"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/help.go

    https://golang.org/doc/tutorial/create-module.
    
    For a detailed reference on modules, see https://golang.org/ref/mod.
    
    By default, the go command may download modules from https://proxy.golang.org.
    It may authenticate modules using the checksum database at
    https://sum.golang.org. Both services are operated by the Go team at Google.
    The privacy policies for these services are available at
    https://proxy.golang.org/privacy and https://sum.golang.org/privacy,
    respectively.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 30 17:07:46 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/list.go

    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    		// that won't be necessary later, so it makes sense not to write the go.sum back out.
    		if !ExplicitWriteGoMod && mode&ListU == 0 {
    			err = commitRequirements(ctx, WriteOpts{})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    are retained as explicit requirements in the go.mod file.
    (Go versions 1.17 and higher retain more requirements in order to
    support lazy module loading.)
    
    The -compat flag preserves any additional checksums needed for the
    'go' command from the indicated major Go release to successfully load
    the module graph, and causes tidy to error out if that version of the
    'go' command would load any imported package from a different module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top