Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 648 for CD (0.02 sec)

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

    [short] skip
    
    # 'go install' with no arguments should clean up after go build
    cd mycmd
    go build
    exists mycmd$GOEXE
    go install
    ! exists mycmd$GOEXE
    
    # 'go install mycmd' does not clean up, even in the mycmd directory
    go build
    exists mycmd$GOEXE
    go install mycmd
    exists mycmd$GOEXE
    
    # 'go install mycmd' should not clean up in an unrelated current directory either
    cd ..
    cp mycmd/mycmd$GOEXE mycmd$GOEXE
    go install mycmd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 21:00:48 UTC 2019
    - 507 bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    >>> Flow 1 (client to server)
    00000000  16 03 01 00 ca 01 00 00  c6 03 03 c4 32 0e 10 66  |............2..f|
    00000010  40 b2 cd 10 90 69 42 31  34 21 b1 a4 0e 15 f9 1e  |@....iB14!......|
    00000020  cd 2b 1d 1a 9a a5 4c 27  87 aa ba 20 6a f8 a9 57  |.+....L'... j..W|
    00000030  72 d6 5b 81 86 e7 df a0  9c a3 f4 21 30 c9 68 f3  |r.[........!0.h.|
    00000040  81 7c 2a 3a c6 fe 97 d7  40 c9 41 79 00 04 13 03  |.|*:....@.Ay....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/fiat/Dockerfile

    # license that can be found in the LICENSE file.
    
    FROM coqorg/coq:8.13.2
    
    RUN git clone https://github.com/mit-plv/fiat-crypto && cd fiat-crypto && \
        git checkout 23d2dbc4ab897d14bde4404f70cd6991635f9c01 && \
        git submodule update --init --recursive
    RUN cd fiat-crypto && eval $(opam env) && make -j4 standalone-ocaml SKIP_BEDROCK2=1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 506 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_buildvcs_auto.txt

    # not attempt to stamp VCS information when the VCS tool is not present.
    
    [short] skip
    [!git] skip
    
    cd sub
    exec git init .
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    exec git add sub.go
    exec git commit -m 'initial state'
    cd ..
    
    exec git init
    exec git config user.name 'Nameless Gopher'
    exec git config user.email '******@****.***'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  5. misc/wasm/go_js_wasm_exec

    # license that can be found in the LICENSE file.
    
    SOURCE="${BASH_SOURCE[0]}"
    while [ -h "$SOURCE" ]; do
    	DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    	SOURCE="$(readlink "$SOURCE")"
    	[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE"
    done
    DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
    
    # Increase the V8 stack size from the default of 984K
    # to 8192K to ensure all tests can pass without hitting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 15:35:28 UTC 2023
    - 603 bytes
    - Viewed (0)
  6. .teamcity/mvnw.cmd

    set EXEC_DIR=%CD%
    set WDIR=%EXEC_DIR%
    :findBaseDir
    IF EXIST "%WDIR%"\.mvn goto baseDirFound
    cd ..
    IF "%WDIR%"=="%CD%" goto baseDirNotFound
    set WDIR=%CD%
    goto findBaseDir
    
    :baseDirFound
    set MAVEN_PROJECTBASEDIR=%WDIR%
    cd "%EXEC_DIR%"
    goto endDetectBaseDir
    
    :baseDirNotFound
    set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
    cd "%EXEC_DIR%"
    
    :endDetectBaseDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version_buildvcs_git.txt

    [!git] skip
    [short] skip
    env GOBIN=$WORK/gopath/bin
    env oldpath=$PATH
    cd repo/a
    
    # If there's no local repository, there's no VCS info.
    go install
    go version -m $GOBIN/a$GOEXE
    ! stdout vcs.revision
    rm $GOBIN/a$GOEXE
    
    # If there's an orphan .git file left by a git submodule, it's not a git
    # repository, and there's no VCS info.
    cd ../gitsubmodule
    go install
    go version -m $GOBIN/gitsubmodule$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/generate/generate_test.go

    	inLine = "//go:generate -command CMD2 \"ab${DOLLAR}{_Z}cd\""
    	expected = []string{"-command", "CMD2", "ab${_Z}cd"}
    	got = g.split(inLine + "\n")
    
    	if !reflect.DeepEqual(got, expected) {
    		t.Errorf("split(%q): got %q expected %q", inLine, got, expected)
    	}
    
    	g.setShorthand(got)
    
    	inLine = "//go:generate CMD2"
    	expected = []string{"ab" + val + "cd"}
    	got = g.split(inLine + "\n")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-AES128-SHA256

    00000420  7d 90 a9 98 36 5b d8 f3  00 22 d9 a9 76 30 ef cd  |}...6[..."..v0..|
    00000430  3f 42 68 af 70 5b 12 c8  9d f8 00 01 3d 02 82 44  |?Bh.p[......=..D|
    00000440  2d a6 2e dc 3b b4 42 5c  c6 01 c4 fb a3 32 86 10  |-...;.B\.....2..|
    00000450  d8 25 ab 87 24 d7 38 7f  dd b8 5f f9 5e 47 a9 57  |.%..$.8..._.^G.W|
    00000460  cc 48 fb 0f 74 4a db 4f  db 92 21 be 08 7c 53 6f  |.H..tJ.O..!..|So|
    00000470  89 3f 68 77 cd 02 a7 aa  9c 9d b5                 |.?hw.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Client-TLSv13-ClientCert-ECDSA-RSA

    00000270  55 95 b2 93 e0 60 a2 cd  e5 72 69 b3 e2 de da 70  |U....`...ri....p|
    00000280  76 88 be 1f 5a 8e 7a d8  ff 94 db b0 92 b2 a1 a1  |v...Z.z.........|
    00000290  26 5b 3b d5 5e 67 16 b7  6a 9f dc ab 21 7e df 6e  |&[;.^g..j...!~.n|
    000002a0  2a 73 e9 20 40 4b c8 34  fc 4b be f6 d8 ba 78 d7  |*s. @K.4.K....x.|
    000002b0  a4 c2 ed a9 52 f9 ea 88  67 5e 10 92 8f ba 83 cd  |....R...g^......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top