Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 648 for CD (0.03 sec)

  1. .github/workflows/test-redistribute.yml

            run: |
              cd dist
              tar xvf fastapi*.tar.gz
          - name: Install test dependencies
            run: |
              cd dist/fastapi*/
              pip install -r requirements-tests.txt
            env:
              TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
          - name: Run source distribution tests
            run: |
              cd dist/fastapi*/
              bash scripts/test.sh
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue May 07 18:31:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_invalid_version.txt

    cd outside
    go list -m github.com/pierrec/lz4
    stdout 'github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1'
    cd ..
    
    # A +incompatible pseudo-version for a module that has an explicit go.mod file is invalid.
    cp go.mod.orig go.mod
    go mod edit -require github.com/pierrec/lz4@v2.0.9-0.20190209155647-9a39efadad3d+incompatible
    cd outside
    ! go list -m github.com/pierrec/lz4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Client-TLSv12-Ed25519

    00000160  03 41 00 63 44 ed 9c c4  be 53 24 53 9f d2 10 8d  |.A.cD....S$S....|
    00000170  9f e8 21 08 90 95 39 e5  0d c1 55 ff 2c 16 b7 1d  |..!...9...U.,...|
    00000180  fc ab 7d 4d d4 e0 93 13  d0 a9 42 e0 b6 6b fe 5d  |..}M......B..k.]|
    00000190  67 48 d7 9f 50 bc 6c cd  4b 03 83 7c f2 08 58 cd  |gH..P.l.K..|..X.|
    000001a0  ac cf 0c 16 03 03 00 6c  0c 00 00 68 03 00 1d 20  |.......l...h... |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/build_internal.txt

    # Test internal package errors are handled
    cd testinternal3
    go list .
    stdout 'testinternal3'
    
    # Test internal cache
    cd ../testinternal4
    ! go build testinternal4/p
    stderr 'internal'
    
    # Test internal packages outside GOROOT are respected
    cd ../testinternal2
    env GO111MODULE=off
    ! go build -v .
    stderr 'p\.go:3:8: use of internal package .*internal/w not allowed'
    env GO111MODULE=''
    
    [compiler:gccgo] skip # gccgo does not have GOROOT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_convert_git.txt

    cd $WORK/test/x
    ! go list .
    stderr 'found .git/config in .*[/\\]test'
    stderr '\s*cd \.\. && go mod init'
    
    # The command we suggested should succeed.
    cd ..
    go mod init
    go list -m all
    stdout '^m$'
    
    # We should not suggest creating a go.mod file in $GOROOT, even though there may be a .git/config there.
    cd $GOROOT
    ! go list .
    ! stderr 'go mod init'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 13 20:43:12 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_replace.txt

    # involved in a cycle.
    cd cycle
    env GOTRACEBACK=off
    go mod tidy
    cd ..
    
    # From inside the module, 'go list -m all' should NOT include transitive
    # requirements of modules that have been replaced.
    go list -m all
    stdout 'rsc.io/quote/v3 v3.0.0'
    ! stdout 'rsc.io/sampler'
    ! stdout 'golang.org/x/text'
    
    # From outside the module, 'go list -m all' should include them.
    cd outside
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3K bytes
    - Viewed (0)
  7. lib/time/update.bash

    #
    #	git codereview change NNNNNN   # CL number
    #	cd lib/time
    #	./update.bash
    #
    # If it prints "No updates needed.", then the generated files
    # in the CL match the update.bash in the CL.
    
    # Versions to use.
    CODE=2024a
    DATA=2024a
    
    set -e
    
    cd $(dirname $0)
    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vcs_missing.txt

    [!net:launchpad.net] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    
    cd empty
    ! go get launchpad.net/gocheck
    stderr '"bzr": executable file not found'
    cd ..
    
    # 1.11 used to give the cryptic error "cannot find module for path" here, but
    # only for a main package.
    cd main
    ! go build -mod=mod
    stderr '"bzr": executable file not found'
    cd ..
    
    -- empty/go.mod --
    module m
    -- main/go.mod --
    module m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 513 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vendor_gomod.txt

    # https://golang.org/issue/42970: As of Go 1.17, go.mod and go.sum files should
    # be stripped from vendored dependencies.
    
    go mod vendor
    cd vendor/example.net/x
    go list all
    ! stdout '^example.net/m'
    stdout '^example.net/x$'
    exists ./go.sum
    
    cd ../../..
    go mod edit -go=1.17
    go mod vendor
    cd vendor/example.net/x
    go list all
    stdout '^example.net/m$'
    stdout '^example.net/x$'
    ! exists ./go.sum
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 30 18:14:18 UTC 2021
    - 633 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_issue35270.txt

    cd a
    ! go build
    stderr '^ambiguous import: found package image in multiple modules:\s+image\s+.+\s.+image.+\s$'
    
    
    cd ../b
    ! go build -mod=vendor
    stderr '^main.go:4:5: ambiguous import: found package image in multiple directories:\s+.+image\s+.+image\s+$'
    
    cd ../c
    ! go build -mod=vendor
    stderr 'main.go:4:5: package p is not in std'
    
    -- a/go.mod --
    module image
    
    -- a/main.go --
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 768 bytes
    - Viewed (0)
Back to top