Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 257 for modzip (0.36 sec)

  1. src/cmd/go/testdata/vcstest/auth/or401.txt

    handle auth
    
    modzip vcs-test.golang.org/auth/or401/@v/v0.0.0-20190405155051-52df474c8a8b.zip vcs-test.golang.org/auth/or401@v0.0.0-20190405155051-52df474c8a8b .moddir
    
    -- .access --
    {
    	"Username": "aladdin",
    	"Password": "opensesame",
    	"StatusCode": 401,
    	"Message": "ACCESS DENIED, buddy"
    }
    -- index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/auth/or401 mod https://vcs-test.golang.org/auth/or401">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 910 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/vcstest/auth/or404.txt

    handle auth
    
    modzip vcs-test.golang.org/auth/or404/@v/v0.0.0-20190405155004-2234c475880e.zip vcs-test.golang.org/auth/or404@v0.0.0-20190405155004-2234c475880e .moddir
    
    -- .access --
    {
    	"Username": "aladdin",
    	"Password": "opensesame",
    	"StatusCode": 404,
    	"Message": "File? What file?"
    }
    -- index.html --
    <!DOCTYPE html>
    <html>
    <meta name="go-import" content="vcs-test.golang.org/auth/or404 mod https://vcs-test.golang.org/auth/or404">
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 954 bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcweb/script.go

    	cmds["fossil"] = script.Program("fossil", interrupt, gracePeriod)
    	cmds["git"] = script.Program("git", interrupt, gracePeriod)
    	cmds["hg"] = script.Program("hg", interrupt, gracePeriod)
    	cmds["handle"] = scriptHandle()
    	cmds["modzip"] = scriptModzip()
    	cmds["svnadmin"] = script.Program("svnadmin", interrupt, gracePeriod)
    	cmds["svn"] = script.Program("svn", interrupt, gracePeriod)
    	cmds["unquote"] = scriptUnquote()
    
    	return &script.Engine{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 9K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo.go

    	"path"
    	"path/filepath"
    	"sort"
    	"strings"
    	"time"
    
    	"cmd/go/internal/gover"
    	"cmd/go/internal/modfetch/codehost"
    
    	"golang.org/x/mod/modfile"
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/semver"
    	modzip "golang.org/x/mod/zip"
    )
    
    // A codeRepo implements modfetch.Repo using an underlying codehost.Repo.
    type codeRepo struct {
    	modPath string
    
    	// code is the repository containing this module.
    	code codehost.Repo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/fetch.go

    	"cmd/go/internal/lockedfile"
    	"cmd/go/internal/par"
    	"cmd/go/internal/robustio"
    	"cmd/go/internal/str"
    	"cmd/go/internal/trace"
    
    	"golang.org/x/mod/module"
    	"golang.org/x/mod/sumdb/dirhash"
    	modzip "golang.org/x/mod/zip"
    )
    
    var downloadCache par.ErrCache[module.Version, string] // version → directory
    
    var ErrToolchain = errors.New("internal error: invalid operation on toolchain module")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  6. lib/time/mkzip.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    // Mkzip writes a zoneinfo.zip with the content of the current directory
    // and its subdirectories, with no compression, suitable for package time.
    //
    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:32:07 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podip.go

    package v1
    
    // PodIPApplyConfiguration represents an declarative configuration of the PodIP type for use
    // with apply.
    type PodIPApplyConfiguration struct {
    	IP *string `json:"ip,omitempty"`
    }
    
    // PodIPApplyConfiguration constructs an declarative configuration of the PodIP type for use with
    // apply.
    func PodIP() *PodIPApplyConfiguration {
    	return &PodIPApplyConfiguration{}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_load_badzip.txt

    env GO111MODULE=on
    
    ! go get rsc.io/badzip
    stderr 'zip for rsc.io/badzip@v1.0.0 has unexpected file rsc.io/badzip@v1.0.0.txt'
    ! grep rsc.io/badzip go.mod
    
    go mod edit -require rsc.io/badzip@v1.0.0
    ! go build -mod=mod rsc.io/badzip
    stderr 'zip for rsc.io/badzip@v1.0.0 has unexpected file rsc.io/badzip@v1.0.0.txt'
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 403 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_badzip_v1.0.0.txt

    rsc.io/badzip v1.0.0
    written by hand
    
    -- .mod --
    module rsc.io/badzip
    -- .info --
    {"Version":"v1.0.0"}
    -- x.go --
    package x
    -- /rsc.io/badzip@v1.0.0.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 16 17:49:55 UTC 2018
    - 186 bytes
    - Viewed (0)
  10. pkg/kubelet/nodestatus/setters_test.go

    				Status: v1.NodeStatus{
    					Addresses: []v1.NodeAddress{},
    				},
    			}
    
    			nodeIPValidator := func(nodeIP net.IP) error {
    				if nodeIP.IsLoopback() {
    					return fmt.Errorf("nodeIP can't be loopback address")
    				} else if nodeIP.IsMulticast() {
    					return fmt.Errorf("nodeIP can't be a multicast address")
    				}
    				return nil
    			}
    			nodeAddressesFunc := func() ([]v1.NodeAddress, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top