Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 648 for CD (0.02 sec)

  1. .github/workflows/arm-cd.yml

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    
    name: ARM CD
    
    on:
      push:
        tags:
          - v2.**
        branches:
          - r2.**
      schedule:
        - cron: '0 8 * * *'
    
    permissions:
      contents: read
    
    jobs:
      build:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 10:24:16 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. .github/workflows/upgrade-ci-cd.yaml

    Shubhendu <******@****.***> 1716419234 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 729 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_enabled.txt

    cd $GOPATH/src/x/y/z/w
    go env GOMOD
    stdout z[/\\]go.mod
    
    cd $GOPATH/src/x/y
    go env GOMOD
    stdout 'NUL|/dev/null'
    go list -m
    stdout '^command-line-arguments$'
    
    cd $GOPATH/foo
    go env GOMOD
    stdout foo[/\\]go.mod
    
    cd $GOPATH/foo/bar/baz
    go env GOMOD
    stdout foo[/\\]go.mod
    
    # GO111MODULE=off should trigger nowhere
    env GO111MODULE=off
    
    cd $GOPATH/src/x/y/z
    go env GOMOD
    ! stdout .+
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 01:30:48 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. tests/tests_all.sh

    #!/bin/bash -e
    
    dialects=("sqlite" "mysql" "postgres" "sqlserver" "tidb")
    
    if [[ $(pwd) == *"gorm/tests"* ]]; then
      cd ..
    fi
    
    if [ -d tests ]
    then
      cd tests
      go get -u -t ./...
      go mod download
      go mod tidy
      cd ..
    fi
    
    # SqlServer for Mac M1
    if [[ -z $GITHUB_ACTION ]]; then
      if [ -d tests ]
      then
        cd tests
        if [[ $(uname -a) == *" arm64" ]]; then
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Feb 08 08:29:09 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_init_tidy.txt

    # (one that contains no non-hidden .go files or subdirectories).
    cd empty
    go mod init m
    ! stderr tidy
    cd ..
    
    # 'go mod init' should recommend 'go mod tidy' if the directory has a .go file.
    cd pkginroot
    go mod init m
    stderr '^go: to add module requirements and sums:\n\tgo mod tidy$'
    cd ..
    
    # 'go mod init' should recommend 'go mod tidy' if the directory has a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 06 18:54:25 UTC 2021
    - 955 bytes
    - Viewed (0)
  6. test/ken/cplx2.go

    	if cb != Cb {
    		println("opcode x", cb, Cb)
    		panic("fail")
    	}
    
    	cc := c5 * c6
    	if cc != Cc {
    		println("opcode x", cc, Cc)
    		panic("fail")
    	}
    
    	cd := c5 / c6
    	if cd != Cd {
    		println("opcode x", cd, Cd)
    		panic("fail")
    	}
    
    	ce := cd * c6
    	if ce != Ce {
    		println("opcode x", ce, Ce)
    		panic("fail")
    	}
    	
    	r32 := real(complex64(ce))
    	if r32 != float32(real(Ce)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 1.9K bytes
    - Viewed (0)
  7. istioctl/pkg/writer/envoy/configdump/ecds_test.go

    	gotOut := &bytes.Buffer{}
    	cw := &ConfigWriter{Stdout: gotOut}
    	cd, _ := os.ReadFile("testdata/ecds/configdump.json")
    	cw.Prime(cd)
    	err := cw.PrintEcdsSummary()
    	assert.NoError(t, err)
    
    	util.CompareContent(t, gotOut.Bytes(), "testdata/ecds/output.txt")
    }
    
    func TestPrintEcdsYaml(t *testing.T) {
    	gotOut := &bytes.Buffer{}
    	cw := &ConfigWriter{Stdout: gotOut}
    	cd, _ := os.ReadFile("testdata/ecds/configdump.json")
    	cw.Prime(cd)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 13 01:08:07 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_empty.txt

    [!race] skip
    
    cd $GOPATH/src/empty/pkg
    go test -cover -coverpkg=. -race
    
    [short] stop # Only run first case in short mode
    
    cd $GOPATH/src/empty/test
    go test -cover -coverpkg=. -race
    
    cd $GOPATH/src/empty/xtest
    go test -cover -coverpkg=. -race
    
    cd $GOPATH/src/empty/pkgtest
    go test -cover -coverpkg=. -race
    
    cd $GOPATH/src/empty/pkgxtest
    go test -cover -coverpkg=. -race
    
    cd $GOPATH/src/empty/pkgtestxtest
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1K bytes
    - Viewed (0)
  9. apache-maven/src/assembly/shared/init.cmd

    set "POM_DIR=%POM_DIR:~0,-1%"
    goto stripPomDir
    :pomDirStripped
    exit /b
    
    :findBaseDir
    cd /d "%WDIR%"
    set "WDIR=%CD%"
    :findBaseDirLoop
    if exist ".mvn" goto baseDirFound
    cd ..
    IF "%WDIR%"=="%CD%" goto baseDirNotFound
    set "WDIR=%CD%"
    goto findBaseDirLoop
    
    :baseDirFound
    set "MAVEN_PROJECTBASEDIR=%WDIR%"
    cd /d "%EXEC_DIR%"
    goto endDetectBaseDir
    
    :baseDirNotFound
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 16 21:35:28 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_find.txt

    symlink $GOPATH/src/link -> $WORK/empty
    cd $WORK/empty
    ! go mod init
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    # GOPATH/src/empty where GOPATH itself is a symlink
    env GOPATH=$WORK/gopathlink
    cd $GOPATH/src/empty
    go mod init
    rm go.mod
    cd $WORK/gopath/src/empty
    go mod init
    rm go.mod
    
    # GOPATH/src/link where GOPATH and link are both symlinks
    cd $GOPATH/src/link
    go mod init
    stderr link
    rm go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
Back to top