Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 648 for CD (0.04 sec)

  1. apache-maven/src/assembly/shared/mvnvalidate

        PRG="$link"
      else
        PRG="`dirname "$PRG"`/$link"
      fi
    done
    
    saveddir=`pwd`
    
    MAVEN_HOME=`dirname "$PRG"`/..
    
    # make it fully qualified
    MAVEN_HOME=`cd "$MAVEN_HOME" && pwd`
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 23 07:59:32 UTC 2020
    - 418 bytes
    - Viewed (0)
  2. util/update_snapshot_docs.sh

    #!/bin/bash
    
    set -e -u
    
    echo "Publishing Javadoc and JDiff..."
    
    cd $HOME
    git clone -q -b gh-pages "https://x-access-token:${GITHUB_TOKEN}@github.com/google/guava.git" gh-pages > /dev/null
    cd gh-pages
    
    git config --global user.name "$GITHUB_ACTOR"
    git config --global user.email "$******@****.***"
    
    ./updaterelease.sh snapshot
    
    git push -fq origin gh-pages > /dev/null
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 16 16:48:28 UTC 2021
    - 439 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_invalid_path.txt

    # but are a valid Windows file name.
    cd $WORK/'gopath/src/m''d'
    ! go mod init
    stderr 'cannot determine module path'
    
    # Test that a go.mod file is rejected when its module declaration has a path that can't
    # possibly be a module path, because it isn't even a valid import path
    cd $WORK/gopath/src/badname
    ! go list .
    stderr 'malformed module path'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 02:54:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/ldflag.txt

    # Issue #42565
    
    [!cgo] skip
    
    # We can't build package bad, which uses #cgo LDFLAGS.
    cd bad
    ! go build
    stderr no-such-warning
    
    # We can build package ok with the same flags in CGO_LDFLAGS.
    env CGO_LDFLAGS=-Wno-such-warning -Wno-unknown-warning-option
    cd ../ok
    go build
    
    # Build a main program that actually uses LDFLAGS.
    cd ..
    go build -ldflags=-v
    
    # Because we passed -v the Go linker should print the external linker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 14 14:11:56 UTC 2020
    - 762 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/run_dirs.txt

    cd rundir
    
    ! go run x.go sub/sub.go
    stderr 'named files must all be in one directory; have . and sub'
    ! go run sub/sub.go x.go
    stderr 'named files must all be in one directory; have sub and .'
    
    cd ../
    go run rundir/foo.go ./rundir/bar.go
    stderr 'hello world'
    
    -- rundir/sub/sub.go --
    package main
    -- rundir/x.go --
    package main
    -- rundir/foo.go --
    package main
    func main() { println(msg) }
    -- rundir/bar.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 16 14:25:50 UTC 2021
    - 449 bytes
    - Viewed (0)
  6. istioctl/pkg/util/configdump/wrapper.go

    type Wrapper struct {
    	*admin.ConfigDump
    }
    
    // UnmarshalJSON is a custom unmarshaller to handle protobuf pain
    func (w *Wrapper) UnmarshalJSON(b []byte) error {
    	cd := &admin.ConfigDump{}
    	err := protomarshal.UnmarshalAllowUnknownWithAnyResolver(nonStrictResolver, b, cd)
    	*w = Wrapper{cd}
    	return err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_overlay.txt

    # Test overlays that affect go.mod files
    
    # The go.mod file can exist only in the overlay.
    cd $WORK/gopath/src/no-go-mod
    go list -overlay overlay.json .
    stdout example.com/simple
    
    # Check content of overlaid go.mod is used.
    cd $WORK/gopath/src/overlay-go-mod
    go list -overlay overlay.json .
    stdout use.this/module/name
    
    # Check content of overlaid go.mod in a replacement module is used.
    # The go.mod in the replacement module is missing a requirement
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  8. fuzzing/fuzzingserver-test.sh

    #!/usr/bin/env bash
    
    SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )"
    cd "$SCRIPT_DIR"
    
    which wstest
    if [ $? != 0 ]; then
      echo "Run 'pip install autobahntestsuite', maybe with 'sudo'."
      exit 1
    fi
    which jq
    if [ $? != 0 ]; then
      echo "Run 'brew install jq'"
      exit 1
    fi
    
    trap 'kill $(jobs -pr)' SIGINT SIGTERM EXIT
    
    set -ex
    
    wstest -m fuzzingserver -s fuzzingserver-config.json &
    sleep 2 # wait for wstest to start
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Mar 26 02:01:32 UTC 2019
    - 673 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_buildmod_reason_issue67587.txt

    cd thirteen
    ! go list -deps
    stderr 	'(Go version in go.mod is 1.13, so vendor directory was not used.)'
    
    cd ../unspecified
    ! go list -deps
    stderr 	'(Go version in go.mod is unspecified, so vendor directory was not used.)'
    
    -- thirteen/foo.go --
    package foo
    
    import _ "github.com/foo/bar"
    -- thirteen/go.mod --
    module example.com
    
    go 1.13
    -- thirteen/vendor/github.com/foo/bar/bar.go --
    package bar
    -- unspecified/foo.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:54:40 UTC 2024
    - 572 bytes
    - Viewed (0)
  10. src/crypto/tls/testdata/Server-TLSv12-Resume

    00000010  59 17 86 df 90 2f 73 e0  a0 5c 6e 28 09 78 69 d6  |Y..../s..\n(.xi.|
    00000020  30 06 b7 7b 17 a9 79 30  2a d8 57 20 c5 5c ed 86  |0..{..y0*.W .\..|
    00000030  15 f4 3b c8 d2 5f 7a 80  2a 6a cd 40 c2 da 6f a8  |..;.._z.*j.@..o.|
    00000040  cd d7 e7 bf 48 bd fb a1  e9 4b 9b a9 00 04 00 2f  |....H....K...../|
    00000050  00 ff 01 00 00 b9 00 23  00 79 00 00 00 00 00 00  |.......#.y......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top