Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 552 for CD (0.18 sec)

  1. src/cmd/go/testdata/script/mod_tidy_replace.txt

    # involved in a cycle.
    cd cycle
    env GOTRACEBACK=off
    go mod tidy
    cd ..
    
    # From inside the module, 'go list -m all' should NOT include transitive
    # requirements of modules that have been replaced.
    go list -m all
    stdout 'rsc.io/quote/v3 v3.0.0'
    ! stdout 'rsc.io/sampler'
    ! stdout 'golang.org/x/text'
    
    # From outside the module, 'go list -m all' should include them.
    cd outside
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. lib/time/update.bash

    #
    #	git codereview change NNNNNN   # CL number
    #	cd lib/time
    #	./update.bash
    #
    # If it prints "No updates needed.", then the generated files
    # 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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_vcs_missing.txt

    [!net:launchpad.net] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    
    cd empty
    ! go get launchpad.net/gocheck
    stderr '"bzr": executable file not found'
    cd ..
    
    # 1.11 used to give the cryptic error "cannot find module for path" here, but
    # only for a main package.
    cd main
    ! go build -mod=mod
    stderr '"bzr": executable file not found'
    cd ..
    
    -- empty/go.mod --
    module m
    -- main/go.mod --
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 513 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_issue35270.txt

    cd a
    ! go build
    stderr '^ambiguous import: found package image in multiple modules:\s+image\s+.+\s.+image.+\s$'
    
    
    cd ../b
    ! go build -mod=vendor
    stderr '^main.go:4:5: ambiguous import: found package image in multiple directories:\s+.+image\s+.+image\s+$'
    
    cd ../c
    ! go build -mod=vendor
    stderr 'main.go:4:5: package p is not in std'
    
    -- a/go.mod --
    module image
    
    -- a/main.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 768 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/version_buildvcs_hg.txt

    ! exec hg help
    cd a
    ! go install
    stderr '^error obtaining VCS status: exit status 1\n\tUse -buildvcs=false to disable VCS stamping.$'
    rm $GOBIN/a$GOEXE
    cd ..
    env PATH=$oldpath
    rm .hg
    
    # If there is an empty repository in a parent directory, only "uncommitted" is tagged.
    exec hg init
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    ! stdout vcs.time
    stdout '^\tbuild\tvcs.modified=true$'
    cd ..
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 30 18:09:02 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/endpoint_test.go

    				Port: 8080,
    			},
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			gotOut := &bytes.Buffer{}
    			cw := &ConfigWriter{Stdout: gotOut}
    			cd, _ := os.ReadFile("testdata/endpoint/configdump.json")
    			cw.Prime(cd)
    			err := cw.PrintEndpointsSummary(tt.filter)
    			assert.NoError(t, err)
    
    			wantOutputFile := path.Join("testdata/endpoint", fmt.Sprintf("%s_output.txt", tt.name))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/MavenLifecycleParticipantTest.java

            ComponentDescriptor<? extends AbstractMavenLifecycleParticipant> cd =
                    new ComponentDescriptor<>(InjectDependencyLifecycleListener.class, container.getContainerRealm());
            cd.setRoleClass(AbstractMavenLifecycleParticipant.class);
            container.addComponentDescriptor(cd);
    
            Maven maven = container.lookup(Maven.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_buildvcs_bzr.txt

    chmod 0755 $WORK/fakebin/bzr
    ! exec bzr help
    cd a
    ! go install
    stderr '^error obtaining VCS status: exit status 1\n\tUse -buildvcs=false to disable VCS stamping.$'
    rm $GOBIN/a$GOEXE
    cd ..
    env PATH=$oldpath
    rm .bzr
    
    # If there is an empty repository in a parent directory, only "modified" is tagged.
    exec bzr init
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    stdout '^\tbuild\tvcs=bzr$'
    ! stdout vcs.revision
    ! stdout vcs.time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 07 03:44:02 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. samples/bookinfo/README.md

    export TAG=<version number>
    ```
    
    ## Compile code
    
    ```bash
    cd samples/bookinfo
    BOOKINFO_TAG=$TAG BOOKINFO_HUB=$HUB src/build-services.sh
    ```
    
    For example:
    
    ```bash
    $ BOOKINFO_TAG=test1.0 BOOKINFO_HUB=docker.io/user1  src/build-services.sh
    +++ dirname ./build-services.sh
    ++ cd .
    ++ pwd
    + SCRIPTDIR=/work/samples/bookinfo/src
    + cd /work/samples/bookinfo/src/../../..
    + h=docker.io/user1
    + t=test1.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_std_vendor.txt

    # Modules outside the standard library should not use the packages vendored there...
    cd broken
    ! go build -mod=readonly
    stderr 'disabled by -mod=readonly'
    ! go build -mod=vendor
    stderr 'http.go:5:2: cannot find module providing package golang.org/x/net/http2/hpack: import lookup disabled by -mod=vendor'
    
    # ...even if they explicitly use the "cmd/vendor/" or "vendor/" prefix.
    cd ../importcmd
    ! go build .
    stderr 'use of vendored package'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top