Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 648 for CD (0.08 sec)

  1. .travis/run.sh

    #!/bin/bash
    
    cd `dirname $0`
    cd ..
    BASE_DIR=`pwd`
    LOG_FILE=$BASE_DIR/test.log
    
    mvn test > $LOG_FILE 2>&1
    ret=$?
    
    if [ $ret != 0 ] ; then
      for f in `find $BASE_DIR -type f | grep surefire-reports | grep -v /TEST-` ; do
        cat $f
      done
    fi
    
    tail -n1000 $LOG_FILE
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Feb 02 08:45:33 UTC 2019
    - 273 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_build_trimpath_issue48557.txt

    # "local import prefix") should not be passed to it.
    
    cd $WORK/tmp/foo
    go build -x -o a.exe main.go
    stderr ${/}compile$GOEXE.*' -nolocalimports'
    ! stderr ${/}compile$GOEXE.*' -D[ =]'
    
    go tool buildid a.exe
    cp stdout ../foo-buildid.txt
    go version a.exe
    cp stdout ../foo-version.txt
    cd ..
    
    
    # On the second build — in a different directory but with -trimpath — the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 16:46:09 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. src/crypto/internal/boring/build-boring.sh

    # Verbatim instructions from BoringCrypto build docs.
    printf "set(CMAKE_C_COMPILER \"clang\")\nset(CMAKE_CXX_COMPILER \"clang++\")\n" >${HOME}/toolchain
    cd boringssl
    mkdir build && cd build && cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=${HOME}/toolchain -DFIPS=1 -DCMAKE_BUILD_TYPE=Release ..
    ninja
    ./crypto/crypto_test
    cd ../..
    
    if [ "$(./boringssl/build/tool/bssl isfips)" != 1 ]; then
    	echo "NOT FIPS"
    	exit 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/get_issue53955.txt

    exec git add extra.go
    exec git commit -m 'next commit'
    exec git show-ref --tags --heads
    cmp stdout $WORK/.git-refs-1
    
    cd $WORK/m
    go get -x github.com/golang/issue53955@2cb3d49f
    stderr '^go: added github.com/golang/issue53955 v1.0.10-0.20220719150701-2cb3d49f8874$'
    
    cd $WORK/repo
    exec git tag v1.0.10
    
    cd $WORK/m
    go get -x github.com/golang/issue53955@v1.0.10
    ! stderr 'v1\.0\.10 is not a tag'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/regexp/syntax/parse_test.go

    	{`x(?i:ab*c|d?e)1`, `x(?i:AB*C|D?E)1`},
    	{`x(?i:ab*cd?e)1`, `x(?i:AB*CD?E)1`},
    	{`0(?i:ab*c|d?e)1`, `(?i:0(?:AB*C|D?E)1)`},
    	{`0(?i:ab*cd?e)1`, `(?i:0AB*CD?E1)`},
    	{`x(?i:ab*c|d?e)`, `x(?i:AB*C|D?E)`},
    	{`x(?i:ab*cd?e)`, `x(?i:AB*CD?E)`},
    	{`0(?i:ab*c|d?e)`, `(?i:0(?:AB*C|D?E))`},
    	{`0(?i:ab*cd?e)`, `(?i:0AB*CD?E)`},
    	{`(?i:ab*c|d?e)1`, `(?i:(?:AB*C|D?E)1)`},
    	{`(?i:ab*cd?e)1`, `(?i:AB*CD?E1)`},
    	{`(?i:ab)[123](?i:cd)`, `(?i:AB[1-3]CD)`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:02:30 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_test.txt

    # A test with the "_test" suffix in the module root should also work.
    cd ../b/
    go list -test
    ! stderr error
    
    # A test with the "_test" suffix of a *package* with a "_test" suffix should
    # even work (not that you should ever do that).
    cd ../c_test
    go list -test
    ! stderr error
    
    cd ../d_test
    go list -test
    ! stderr error
    
    cd ../e
    go list -test
    ! stderr error
    
    -- a/go.mod.empty --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 17 21:24:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/version_buildvcs_fossil.txt

    ! exec fossil 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 $fslckout
    
    # Revision and commit time are tagged for repositories with commits.
    exec fossil open ../repo.fossil -f
    exec fossil add a README
    exec fossil commit -m 'initial commit'
    cd a
    go install
    go version -m $GOBIN/a$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/envoy/configdump/configdump_test.go

    			inputFile:   "",
    			wantConfigs: 0,
    			wantErr:     true,
    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			cw := &ConfigWriter{}
    			cd, _ := os.ReadFile(tt.inputFile)
    			err := cw.Prime(cd)
    			if cw.configDump == nil {
    				if tt.wantConfigs != 0 {
    					t.Errorf("wanted some configs loaded but config dump was nil")
    				}
    			} else if len(cw.configDump.Configs) != tt.wantConfigs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_script_cmdcd.txt

    # Tests that after a cd command, where usually the UNIX path separator is used,
    # a match against $PWD does not fail on Windows.
    
    cd $WORK/a/b/c/pkg
    
    go list -find -f {{.Root}}
    stdout $PWD
    
    -- $WORK/a/b/c/pkg/go.mod --
    module pkg
    
    -- $WORK/a/b/c/pkg/pkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 14 15:35:28 UTC 2021
    - 272 bytes
    - Viewed (0)
Back to top