Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/crypto/tls/testdata/Client-TLSv12-ECDHE-ECDSA-AES256-GCM-SHA384

    00000290  23 a6 6a 9b 0f e3 52 51  7b bc f2 79 00 c9 a4 a0  |#.j...RQ{..y....|
    000002a0  94 02 04 03 00 8b 30 81  88 02 42 01 8c 12 91 28  |......0...B....(|
    000002b0  d4 6d cd 39 62 75 9a e0  e5 dd ea 31 45 f5 cd 8b  |.m.9bu.....1E...|
    000002c0  28 82 14 f5 e9 61 0e 9d  af 42 06 17 42 e9 24 1c  |(....a...B..B.$.|
    000002d0  2b 1a c8 77 e4 7a 82 2b  b0 dd 28 3f 76 5d dd fd  |+..w.z.+..(?v]..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. .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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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