Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for modzip (0.09 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. 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)
  5. 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)
  6. pilot/pkg/config/kube/ingress/status_test.go

    }
    
    func TestRunningAddressesWithPod(t *testing.T) {
    	syncer := makeStatusSyncer(t, "")
    
    	address := syncer.runningAddresses()
    
    	if len(address) != 1 || address[0] != nodeIP {
    		t.Errorf("Address is not correctly set to node ip %v %v", address, nodeIP)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-eager/tests/executeTasks.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-lazy/tests/executeTasks.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 41 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/creating-tasks-lazy/kotlin/build.gradle.kts

    // tag::container-api[]
    tasks.register("greeting") {
        doLast { println("Hello, World!") }
    }
    
    // end::container-api[]
    
    // tag::typed-container-api[]
    tasks.register<Zip>("docZip") {
        archiveFileName = "doc.zip"
        from("doc")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 263 bytes
    - Viewed (0)
  10. lib/time/update.bash

    # in the CL match the update.bash in the CL.
    
    # Versions to use.
    CODE=2024a
    DATA=2024a
    
    set -e
    
    cd $(dirname $0)
    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top