Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,003 for runUse (0.12 sec)

  1. src/internal/fuzz/encoding_test.go

    }
    
    func FuzzRuneRoundTrip(f *testing.F) {
    	f.Add(rune(-1))
    	f.Add(rune(0xd800))
    	f.Add(rune(0xdfff))
    	f.Add(rune(unicode.ReplacementChar))
    	f.Add(rune(unicode.MaxASCII))
    	f.Add(rune(unicode.MaxLatin1))
    	f.Add(rune(unicode.MaxRune))
    	f.Add(rune(unicode.MaxRune + 1))
    	f.Add(rune(-0x80000000))
    	f.Add(rune(0x7fffffff))
    
    	f.Fuzz(func(t *testing.T, r1 rune) {
    		b := marshalCorpusFile(r1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    			You can read more about bootstrap tokens here:
    			  https://kubernetes.io/docs/admin/bootstrap-tokens/
    		`),
    
    		// Without this callback, if a user runs just the "token"
    		// command without a subcommand, or with an invalid subcommand,
    		// cobra will print usage information, but still exit cleanly.
    		// We want to return an error code in these cases so that the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/go_test.go

    		tg.t.FailNow()
    	}
    }
    
    // grepStdout looks for a regular expression in the test run's
    // standard output and fails, logging msg, if it is not found.
    func (tg *testgoData) grepStdout(match, msg string) {
    	tg.t.Helper()
    	tg.doGrep(match, &tg.stdout, "output", msg)
    }
    
    // grepStderr looks for a regular expression in the test run's
    // standard error and fails, logging msg, if it is not found.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/organizing_tasks.adoc

    My app build tasks
    ------------------
    build - Assembles and tests this project.
    check - Runs checks (including tests).
    qualityCheck - Runs checks (excluding tests).
    run - Runs this project as a JVM application
    tasksAll - Show additional tasks.
    ----
    
    If we run it, we can see that it runs checkstyle but not the tests:
    
    [source,text]
    ----
    $ ./gradlew :app:qualityCheck
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 23:21:15 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/net/http/cgi/host.go

    		Header:     make(http.Header),
    		Host:       url.Host,
    		RemoteAddr: req.RemoteAddr,
    		TLS:        req.TLS,
    	}
    	h.PathLocationHandler.ServeHTTP(rw, newReq)
    }
    
    func upperCaseAndUnderscore(r rune) rune {
    	switch {
    	case r >= 'a' && r <= 'z':
    		return r - ('a' - 'A')
    	case r == '-':
    		return '_'
    	case r == '=':
    		// Maybe not part of the CGI 'spec' but would mess up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. src/text/scanner/scanner.go

    		}
    	}
    	return
    }
    
    func (s *Scanner) scanNumber(ch rune, seenDot bool) (rune, rune) {
    	base := 10         // number base
    	prefix := rune(0)  // one of 0 (decimal), '0' (0-octal), 'x', 'o', or 'b'
    	digsep := 0        // bit 0: digit present, bit 1: '_' present
    	invalid := rune(0) // invalid digit in literal, or 0
    
    	// integer part
    	var tok rune
    	var ds int
    	if !seenDot {
    		tok = Int
    		if ch == '0' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. hack/make-rules/verify.sh

      "verify-*-dockerized.sh"       # Don't run any scripts that intended to be run dockerized
      "verify-golangci-lint-pr.sh"       # Runs in a separate job for PRs.
      "verify-golangci-lint-pr-hints.sh" # Runs in a separate job for PRs.
      "verify-licenses.sh"           # runs in a separate job to monitor availability of the dependencies periodically
      "verify-openapi-docs-urls.sh"  # Spams docs URLs, don't run in CI.
      )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 12:24:15 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. .teamcity/src/test/kotlin/PromotionProjectTests.kt

        }
    
        @Test
        fun `promotion sanity check runs 'gradle tasks'`() {
            val model = setupModelFor("release")
    
            val sanityCheck = model.findBuildTypeByName("SanityCheck")
            val steps = sanityCheck.steps.items
            val gradleBuildStep = gradleStep(steps, 0)
            gradleBuildStep.assertTasks("tasks")
        }
    
        @Test
        fun `nightly promotion build type runs three gradle invocations`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 14:18:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. doc/next/6-stdlib/99-minor/unicode/utf16/44940.md

    The [RuneLen] function returns the number of 16-bit words in
    the UTF-16 encoding of the rune. It returns -1 if the rune
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 162 bytes
    - Viewed (0)
Back to top