Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 648 for CD (0.02 sec)

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

    stderr 'no matching files found'
    ! go list -json=TestEmbedFiles
    stderr 'no matching files found'
    ! go list -json=XTestEmbedFiles
    stderr 'no matching files found'
    cd ..
    
    [!git] skip
    
    # Test -json=<field> without Stale skips computing buildinfo
    cd repo
    exec git init
    # Control case: with -json=Stale cmd/go executes git status to compute buildinfo
    go list -json=Stale -x
    stderr 'git status'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 15:24:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_fs_patterns.txt

    stderr 'main module \(m\) does not contain package m/go.mod'
    
    
    # File system paths and patterns should allow the '@' character.
    cd ../@at
    go list $PWD
    stdout '^at$'
    go list $PWD/...
    stdout '^at$'
    
    # The '@' character is not allowed in directory paths that are part of
    # a package path.
    cd ../badat/bad@
    ! go list .
    stderr 'current directory outside main module or its selected dependencies'
    ! go list $PWD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 18:09:53 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_goproxy_off.txt

    # Verify that the go.mod files for both modules in the workspace are tidy,
    # and add missing go.sum entries as needed.
    
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    
    cd sub
    cp go.mod go.mod.orig
    go mod tidy
    cmp go.mod go.mod.orig
    cd ..
    
    go list -m all
    stdout '^rsc\.io/quote v1\.5\.1$'
    stdout '^rsc\.io/sampler v1\.3\.1$'
    
    # Now remove the module dependencies from the module cache.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 14 19:05:09 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  4. samples/bookinfo/src/build-services.sh

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    set -ox errexit
    
    # Get to the root directory of the repo...
    SCRIPTDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
    cd "$SCRIPTDIR/../../.."
    
    h="${BOOKINFO_HUB:?BOOKINFO_HUB must be set}"
    t="${BOOKINFO_TAG:?BOOKINFO_TAG must be set}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndGiven

    000001a0  92 7c a5 01 96 52 7e de  38 b9 b0 ee 60 1e aa eb  |.|...R~.8...`...|
    000001b0  8c e6 b4 f4 7c 35 d2 0b  9b 83 94 ac ac ce 7e 58  |....|5........~X|
    000001c0  51 6e c3 ae 3b cd f5 85  8a 1e 43 78 19 ee dc a1  |Qn..;.....Cx....|
    000001d0  a3 d0 93 24 0d 3b 6a 4b  cd dc 78 9c 0b 2f bc 41  |...$.;jK..x../.A|
    000001e0  46 2f 64 3c 23 95 04 8b  60 75 bf 4d 45 3b e4 1e  |F/d<#...`u.ME;..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Client-TLSv10-ClientCert-RSA-ECDSA

    000001d0  ac 11 b1 28 56 be 1d cd  61 62 84 09 bf d6 80 c6  |...(V...ab......|
    000001e0  45 8d 82 2c b4 d8 83 9b  db c9 22 b7 2a 12 11 7b  |E..,......".*..{|
    000001f0  fa 02 3b c1 c9 ff ea c9  9d a8 49 d3 95 d7 d5 0e  |..;.......I.....|
    00000200  e5 35 16 03 01 00 25 10  00 00 21 20 2f e5 7d a3  |.5....%...! /.}.|
    00000210  47 cd 62 43 15 28 da ac  5f bb 29 07 30 ff f6 84  |G.bC.(.._.).0...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_gobuild_import.txt

    # GO111MODULE=auto outside GOPATH/src
    cd $GOPATH/other
    env GO111MODULE=auto
    exec $WORK/testimport$GOEXE other/x/y/z/w .
    stdout w2.go
    
    ! exec $WORK/testimport$GOEXE gobuild.example.com/x/y/z/w .
    stderr 'no required module provides package gobuild.example.com/x/y/z/w; to add it:\n\tgo get gobuild.example.com/x/y/z/w'
    
    cd z
    exec $WORK/testimport$GOEXE other/x/y/z/w .
    stdout w2.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:16 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_doc.txt

    #
    # When in those modules, the "// import" comment should refer to the same import
    # path used in source code, not to the absolute path relative to GOROOT.
    
    cd $GOROOT/src
    env GOFLAGS=
    env GOWORK=off
    go doc cryptobyte
    stdout '// import "golang.org/x/crypto/cryptobyte"'
    
    cd $GOROOT/src/cmd/go
    go doc modfile
    stdout '// import "golang.org/x/mod/modfile"'
    
    # When outside of the 'std' module, its vendored packages
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. 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 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-X25519

    000002a0  03 00 ac 0c 00 00 a8 03  00 1d 20 2f e5 7d a3 47  |.......... /.}.G|
    000002b0  cd 62 43 15 28 da ac 5f  bb 29 07 30 ff f6 84 af  |.bC.(.._.).0....|
    000002c0  c4 cf c2 ed 90 99 5f 58  cb 3b 74 08 04 00 80 27  |......_X.;t....'|
    000002d0  d6 32 9d 2d 17 61 04 13  02 29 ad c2 af f7 ac 7b  |.2.-.a...).....{|
    000002e0  65 1c 6b cd 1d 7d 05 d7  b9 55 82 1b 23 92 6b b5  |e.k..}...U..#.k.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top