Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for _run (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle build
    ----
    
    === Running applications
    It is common for applications to run with the `run` task, which assembles the application and executes some script or binary:
    
    ----
    $ gradle run
    ----
    
    === Running all checks
    It is common for _all_ verification tasks, including tests and linting, to be executed using the `check` task:
    
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. src/cmd/go/internal/run/run.go

    	Short:     "compile and run Go program",
    	Long: `
    Run compiles and runs the named main Go package.
    Typically the package is specified as a list of .go source files from a single
    directory, but it may also be an import path, file system path, or pattern
    matching a single known package, as in 'go run .' or 'go run my/cmd'.
    
    If the package argument has a version suffix (like @latest or @v1.0.0),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/run.rc

    #!/bin/rc -e
    # Copyright 2012 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/echotest/run.go

    	oneClusterOneTest func(t framework.TestContext, from cluster.Cluster, to echo.Target)
    	ingressTest       func(t framework.TestContext, from ingress.Instance, to echo.Target)
    )
    
    // Run will generate and run one subtest to send traffic between each combination
    // of source instance to target deployment.
    //
    // For example, in a test named `a/to_b/from_cluster-0`,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  5. build/run.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # Run a command in the docker build container.  Typically this will be one of
    # the commands in `hack/`.  When running in the build container the user is sure
    # to have a consistent reproducible build environment.
    
    set -o errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 16 08:25:52 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    }
    
    // Run generates and uploads reports, as allowed by the mode file.
    func Run(config RunConfig) error {
    	defer func() {
    		if err := recover(); err != nil {
    			log.Printf("upload recover: %v", err)
    		}
    	}()
    	uploader, err := newUploader(config)
    	if err != nil {
    		return err
    	}
    	defer uploader.Close()
    	return uploader.Run()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. apache-maven/src/assembly/shared/run

    Michael Osipov <******@****.***> 1640033625 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 21 09:29:19 UTC 2021
    - 740 bytes
    - Viewed (0)
  8. src/run.bat

    L1::: Copyright 2012 The Go Authors. All rights reserved.
    L2::: Use of this source code is governed by a BSD-style
    L3::: license that can be found in the LICENSE file.
    L4:
    L5:@echo off
    L6:
    L7:if exist ..\bin\go.exe goto ok
    L8:echo Must run run.bat from Go src directory after installing cmd/go.
    L9:goto fail
    L10::ok
    L11:
    L12::: Keep environment variables within this script
    L13::: unless invoked with --no-local.
    L14:if x%1==x--no-local goto nolocal
    L15:if x%2==x--no-local goto nolocal
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 859 bytes
    - Viewed (0)
  9. src/run.bash

    #
    # GO_TEST_TIMEOUT_SCALE: a non-negative integer factor to scale test timeout by.
    # Defaults to 1.
    
    set -e
    
    if [ ! -f ../bin/go ]; then
    	echo 'run.bash must be run from $GOROOT/src after installing cmd/go' 1>&2
    	exit 1
    fi
    
    export GOENV=off
    eval $(../bin/go tool dist env)
    
    unset CDPATH	# in case user has it set
    
    export GOHOSTOS
    export CC
    
    # no core files, please
    ulimit -c 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:02:23 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. common/scripts/run.sh

    # following command only
    # shellcheck disable=SC2086
    "${CONTAINER_CLI}" run \
        --rm \
        "${DOCKER_RUN_OPTIONS[@]}" \
        --init \
        --sig-proxy=true \
        ${DOCKER_SOCKET_MOUNT:--v /var/run/docker.sock:/var/run/docker.sock} \
        $CONTAINER_OPTIONS \
        --env-file <(env | grep -v ${ENV_BLOCKLIST}) \
        -e IN_BUILD_CONTAINER=1 \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 02:34:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top