Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,831 for runN (0.09 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdmethods/stdmethods.go

    	"ReadFrom":      {[]string{"=io.Reader"}, []string{"int64", "error"}},              // io.ReaderFrom
    	"ReadRune":      {[]string{}, []string{"rune", "int", "error"}},                    // io.RuneReader
    	"Scan":          {[]string{"=fmt.ScanState", "rune"}, []string{"error"}},           // fmt.Scanner
    	"Seek":          {[]string{"=int64", "int"}, []string{"int64", "error"}},           // io.Seeker
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. tools/go-stress-test

    # * -stress.runs: exit successfully after this many runs. Default 1000.
    # * -stress.time: exit successfully after this much time has passed. Default 10s.
    
    set -u
    
    red='\e[0;31m'
    green='\e[0;32m'
    yellow='\e[0;33m'
    clr='\e[0m'
    
    binary="${1}"
    RUN="."
    COUNT=1
    RUNS=1000
    TIME=10s
    while [[ "$#" -gt 0 ]]; do
        case $1 in
            -test.v=true) VERBOSE=true ;;
            -test.run=*) RUN="${1#-test.run=}" ;;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. pkg/util/async/bounded_frequency_runner.go

    //
    // Examples:
    //
    // NewBoundedFrequencyRunner("name", fn, time.Second, 5*time.Second, 1)
    // - fn will have at least 1 second between runs
    // - fn will have no more than 5 seconds between runs
    //
    // NewBoundedFrequencyRunner("name", fn, 3*time.Second, 10*time.Second, 3)
    // - fn will have at least 3 seconds between runs, with up to 3 burst runs
    // - fn will have no more than 10 seconds between runs
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 15 09:36:26 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  4. .github/workflows/build.yml

          - name: Build okcurl
            run: ./gradlew okcurl:nativeImage
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v3
    
          - name: Build ConsoleLauncher
            run: ./gradlew -PgraalBuild=true native-image-tests:nativeImage
    
          - name: Run Checks
            run: ./native-image-tests/build/graal/ConsoleLauncher
    
      testandroid:
        runs-on: ubuntu-latest
        timeout-minutes: 30
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 01:51:50 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. src/math/big/intconv.go

    // a leading "0x" or "0X" for "%#x" and "%#X" respectively,
    // specification of minimum digits precision, output field
    // width, space or zero padding, and '-' for left or right
    // justification.
    func (x *Int) Format(s fmt.State, ch rune) {
    	// determine base
    	var base int
    	switch ch {
    	case 'b':
    		base = 2
    	case 'o', 'O':
    		base = 8
    	case 'd', 's', 'v':
    		base = 10
    	case 'x', 'X':
    		base = 16
    	default:
    		// unknown format
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationQueueTest.groovy

        }
    
        def "executes all #runs operations in #threads threads"() {
            given:
            setupQueue(threads)
            def success = Mock(TestBuildOperation)
    
            when:
            runs.times { operationQueue.add(success) }
    
            and:
            operationQueue.waitForCompletion()
    
            then:
            runs * success.run(_)
    
            where:
            runs | threads
            0    | 1
            0    | 4
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. cmd/api-headers_test.go

    import (
    	"testing"
    )
    
    func TestNewRequestID(t *testing.T) {
    	// Ensure that it returns an alphanumeric result of length 16.
    	id := mustGetRequestID(UTCNow())
    
    	if len(id) != 16 {
    		t.Fail()
    	}
    
    	var e rune
    	for _, char := range id {
    		e = char
    
    		// Ensure that it is alphanumeric, in this case, between 0-9 and A-Z.
    		if !(('0' <= e && e <= '9') || ('A' <= e && e <= 'Z')) {
    			t.Fail()
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/generated.proto

      // handlers are available on every node, and handlers of the same name are
      // equivalent on every node.
      // For example, a handler called "runc" might specify that the runc OCI
      // runtime (using native Linux containers) will be used to run the containers
      // in a pod.
      // The handler must be lowercase, conform to the DNS Label (RFC 1123) requirements,
      // and is immutable.
      optional string handler = 2;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/jpms/execution/JavaModuleExecutionIntegrationTest.groovy

            when:
            succeeds ':run'
    
            then:
            outputContains("Module Name: consumer")
            outputContains("Module Version: 1.0-beta2")
        }
    
        def "runs a module using the module path with main class defined in run task"() {
            given:
            buildFile << """
                task run(type: JavaExec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/builtins1.go

    }
    
    // delete
    
    type M0 interface{ int }
    type M1 interface{ map[string]int }
    type M2 interface { map[string]int | map[string]float64 }
    type M3 interface{ map[string]int | map[rune]int }
    type M4[K comparable, V any] interface{ map[K]V | map[rune]V }
    
    func _[T any](m T) {
    	delete(m /* ERROR "not a map" */, "foo")
    }
    
    func _[T M0](m T) {
    	delete(m /* ERROR "not a map" */, "foo")
    }
    
    func _[T M1](m T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 21:16:29 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top