Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 7,236 for run1 (0.04 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationContinuousBuildIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "run1.id == run2.id")
        def "obtains notifications about init scripts"() {
            when:
            settingsFile << notifications.registerListener()
            buildScript """
                apply plugin: "java"
            """
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
            succeeds("build")
            def run1 = notifications.op(RunBuildBuildOperationType.Details)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 09:57:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/testing/benchmark.go

    	b.showAllocResult = true
    }
    
    // runN runs a single benchmark for the specified number of iterations.
    func (b *B) runN(n int) {
    	benchmarkLock.Lock()
    	defer benchmarkLock.Unlock()
    	defer func() {
    		b.runCleanup(normalPanic)
    		b.checkRaces()
    	}()
    	// Try to get a comparable environment for each run
    	// by clearing garbage from previous runs.
    	runtime.GC()
    	b.resetRaces()
    	b.N = n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/vcs/vcs.go

    	return v.run1(dir, cmd, keyval, true)
    }
    
    // runOutputVerboseOnly is like runOutput but only generates error output to
    // standard error in verbose mode.
    func (v *Cmd) runOutputVerboseOnly(dir string, cmd string, keyval ...string) ([]byte, error) {
    	return v.run1(dir, cmd, keyval, false)
    }
    
    // run1 is the generalized implementation of run and runOutput.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  4. test/rune.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test rune constants, expressions and types.
    // Compiles but does not run.
    
    package rune
    
    var (
    	r0 = 'a'
    	r1 = 'a'+1
    	r2 = 1+'a'
    	r3 = 'a'*2
    	r4 = 'a'/2
    	r5 = 'a'<<1
    	r6 = 'b'<<2
    	r7 int32
    
    	r = []rune{r0, r1, r2, r3, r4, r5, r6, r7}
    )
    
    var (
    	f0 = 1.2
    	f1 = 1.2/'a'
    
    	f = []float64{f0, f1}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 603 bytes
    - Viewed (0)
  5. src/cmd/go/internal/run/run.go

    module-aware mode or GOPATH mode, depending on the GO111MODULE environment
    variable and the presence of a go.mod file. See 'go help modules' for details.
    If module-aware mode is enabled, "go run" runs in the context of the main
    module.
    
    By default, 'go run' runs the compiled binary directly: 'a.out arguments...'.
    If the -exec flag is given, 'go run' invokes the binary using xprog:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. pkg/test/framework/components/echo/echotest/run.go

    			})
    		}
    	})
    }
    
    // fromEachCluster runs test from each cluster without requiring source deployment.
    func (t *T) fromEachCluster(ctx framework.TestContext, testFn perClusterTest) {
    	for _, fromCluster := range t.sources.Clusters() {
    		fromCluster := fromCluster
    		ctx.NewSubTestf("from %s", fromCluster.StableName()).Run(func(ctx framework.TestContext) {
    			testFn(ctx, fromCluster)
    		})
    	}
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top