Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for _run (0.07 sec)

  1. Jenkinsfile

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17', '21']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node(jenkinsEnv.nodeSelection(osNode)) {
        dir('build') {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. src/cmd/go/main.go

    		telemetry.Inc("go/subcommand:unknown")
    		fmt.Fprintf(os.Stderr, "go %s: unknown command\nRun 'go help%s' for usage.\n", cmdName, helpArg)
    		base.SetExitStatus(2)
    		base.Exit()
    	}
    	// Increment a subcommand counter for the subcommand we're running.
    	// Don't increment the counter for the tool subcommand here: we'll
    	// increment in the tool subcommand's Run function because we need
    	// to do the flag processing in invoke first.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. Jenkinsfile.s390x

    def buildOs = 'linux'
    def buildJdk = '17'
    def buildMvn = '3.8.x'
    def runITsOses = ['linux']
    def runITsJdks = ['17']
    def runITsMvn = '3.8.x'
    def runITscommand = "mvn clean install -Prun-its,embedded -B -U -V" // -DmavenDistro=... -Dmaven.test.failure.ignore=true
    def tests
    
    try {
    
    def osNode = jenkinsEnv.labelForOS(buildOs)
    node('s390x') {
        dir('build') {
            stage('Checkout') {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pilot/pkg/model/config.go

    	// configuration type
    	RegisterEventHandler(kind config.GroupVersionKind, handler EventHandler)
    
    	// Run until a signal is received.
    	// Run *should* block, so callers should typically call `go controller.Run(stop)`
    	Run(stop <-chan struct{})
    
    	// HasSynced returns true after initial cache synchronization is complete
    	HasSynced() bool
    }
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_run.txt

    ! go test -run /this
    stdout FAIL
    stdout 'error here'
    ! stdout 'no tests to run'
    
    ! go test -v -run FuzzFoo/this
    stdout FAIL
    stdout 'error here'
    stdout '=== RUN   FuzzFoo/thisfails'
    stdout '--- FAIL: FuzzFoo/thisfails'
    stdout '=== RUN   FuzzFoo/thispasses'
    stdout '--- PASS: FuzzFoo/thispasses'
    ! stdout 'no tests to run'
    
    ! go test -v -run /this
    stdout FAIL
    stdout 'error here'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:02 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. src/cmd/internal/test2json/testdata/framebig.json

    {"Action":"start"}
    {"Action":"run","Test":"TestIndex"}
    {"Action":"output","Test":"TestIndex","Output":"=== RUN   TestIndex\n"}
    {"Action":"output","Test":"TestIndex","Output":"--- PASS: TestIndex (0.00s)\n"}
    {"Action":"pass","Test":"TestIndex"}
    {"Action":"pass","Test":"TestIndex"}
    {"Action":"output","Test":"TestIndex","Output":"=== PASS  TestIndex\n"}
    {"Action":"run","Test":"TestLastIndex"}
    {"Action":"output","Test":"TestLastIndex","Output":"=== RUN   TestLastIndex\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            given:
            addIsCachedCheck()
    
            when:
            run()
            run()
    
            then:
            isCached()
        }
    
        def "refreshes when buildscript changes"() {
            given:
            addIsCachedCheck()
            run()
            buildFile << """
                task newTask
            """
    
            expect:
            run "newTask" //knows new task
            isNotCached()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    	mkasm="go run mkasm.go"
    	mkerrors="$mkerrors -m64"
    	mksyscall="go run mksyscall.go -openbsd -libc"
    	mksysctl="go run mksysctl_openbsd.go"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    openbsd_arm)
    	mkasm="go run mkasm.go"
    	mkerrors="$mkerrors"
    	mksyscall="go run mksyscall.go -l32 -openbsd -arm -libc"
    	mksysctl="go run mksysctl_openbsd.go"
    	# Let the type of C char be signed for making the bare syscall
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/test_skip.txt

    go test -v -run Test -skip T skip_test.go
    ! stdout RUN
    stdout '^ok.*\[no tests to run\]'
    
    go test -v -skip T skip_test.go
    ! stdout RUN
    
    go test -v -skip 1 skip_test.go
    ! stdout Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    
    go test -v -skip 2/3 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*ExampleTest1
    ! stdout Test2/3
    
    go test -v -skip 2/4 skip_test.go
    stdout RUN.*Test1
    stdout RUN.*Test2
    stdout RUN.*Test2/3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 17:40:22 UTC 2023
    - 755 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /**< 
     *  Retrieves the entire run summary for the last test run (reset each run).
     *  The run counts and stats contained in the run summary are updated 
     *  throughout a test run.  Note, however, that the elapsed time is not 
     *  updated until after all suites/tests are run but before the "all tests 
     *  complete"  message handler is called (if any).  To get the elapsed 
     *  time during a test run, use CU_get_elapsed_time() instead.
     */
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
Back to top