Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 648 for CD (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/version_buildvcs_nested.txt

    mkdir hgsub
    cd hgsub
    exec hg init
    cp ../../main.go main.go
    ! go build
    stderr '^error obtaining VCS status: main module is in repository ".*root" but current directory is in repository ".*hgsub"$'
    stderr '^\tUse -buildvcs=false to disable VCS stamping.$'
    go build -buildvcs=false
    go mod init example.com/root/hgsub
    go build
    cd ..
    
    # It's an error to build a package from a nested Git repository if the package
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. fess-crawler/src/test/resources/extractor/test.rdf

    1.0 UTF-8 http://www.w3.org/1999/02/22-rdf-syntax-ns# http://www.recshop.fake/cd# http://www.recshop.fake/cd/Empire Burlesque Shinsuke Sugaya Japan テスト 100 2010 コメント...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 437 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_replace_gopkgin.txt

    # the replacement path is not a gopkg.in path.
    cd 4-to-4
    go list -m gopkg.in/src-d/go-git.v4
    
    # Previous versions of the "go" command accepted v0 and v1 pseudo-versions
    # as replacements for gopkg.in/[…].v4.
    # As a special case, we continue to accept those.
    
    cd ../4-to-0
    go list -m gopkg.in/src-d/go-git.v4
    
    cd ../4-to-1
    go list -m gopkg.in/src-d/go-git.v4
    
    cd ../4-to-incompatible
    go list -m gopkg.in/src-d/go-git.v4
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. buildscripts/verify-build.sh

    }
    
    function run_test_fs() {
    	start_minio_fs
    
    	(cd "$WORK_DIR" && "$FUNCTIONAL_TESTS")
    	rv=$?
    
    	pkill minio
    	sleep 3
    
    	if [ "$rv" -ne 0 ]; then
    		cat "$WORK_DIR/fs-minio.log"
    	fi
    	rm -f "$WORK_DIR/fs-minio.log"
    
    	return "$rv"
    }
    
    function run_test_erasure_sets() {
    	start_minio_erasure_sets
    
    	(cd "$WORK_DIR" && "$FUNCTIONAL_TESTS")
    	rv=$?
    
    	pkill minio
    	sleep 3
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top