Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 251 for Answers (0.15 sec)

  1. src/cmd/cgo/internal/test/issue8694.go

    	"testing"
    )
    
    func test8694(t *testing.T) {
    	if runtime.GOARCH == "arm" {
    		t.Skip("test8694 is disabled on ARM because 5l cannot handle thumb library.")
    	}
    	// Really just testing that this compiles, but check answer anyway.
    	x := C.complexfloat(2 + 3i)
    	x2 := x * x
    	cx2 := C.complexFloatSquared(x)
    	if cx2 != x2 {
    		t.Errorf("C.complexFloatSquared(%v) = %v, want %v", x, cx2, x2)
    	}
    
    	y := C.complexdouble(2 + 3i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 15:35:35 UTC 2024
    - 984 bytes
    - Viewed (0)
  2. src/sort/search.go

    //
    //	func GuessingGame() {
    //		var s string
    //		fmt.Printf("Pick an integer from 0 to 100.\n")
    //		answer := sort.Search(100, func(i int) bool {
    //			fmt.Printf("Is your number <= %d? ", i)
    //			fmt.Scanf("%s", &s)
    //			return s != "" && s[0] == 'y'
    //		})
    //		fmt.Printf("Your number is %d.\n", answer)
    //	}
    func Search(n int, f func(int) bool) int {
    	// Define f(-1) == false and f(n) == true.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 16:40:32 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/userinput/UserInputHandlingIntegrationTest.groovy

            outputContains("result = b")
        }
    
        def "can answer text question in interactive build [rich console: #richConsole]"() {
            given:
            withRichConsole(richConsole)
    
            when:
            runWithInput("ask", QUESTION_PROMPT, "answer")
    
            then:
            outputContains("result = answer")
    
            where:
            richConsole << VALID_BOOLEAN_CHOICES
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/03-gopls.yml

    description: Issues or feature requests for the Go language server (gopls)
    title: "x/tools/gopls: issue title"
    labels: ["gopls", "Tools"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: textarea
        id: gopls-version
        attributes:
          label: "gopls version"
          description: "Output of `gopls -v version` on the command line"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/filesystem/FileSystem.java

         *
         * @return <code>true</code> if the file system is case sensitive, <code>false</code> otherwise
         */
        boolean isCaseSensitive();
    
        /**
         * Tells if the file system can create symbolic links. If the answer cannot be determined accurately,
         * <code>false</code> is returned.
         *
         * @return <code>true</code> if the file system can create symbolic links, <code>false</code> otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. docs/en/docs/advanced/security/http-basic-auth.md

    #### The time to answer helps the attackers
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/01-pkgsite.yml

    name: Pkg.go.dev bugs or feature requests
    description: Issues or feature requests for the documentation site
    title: "x/pkgsite: issue title"
    labels: ["pkgsite"]
    body:
      - type: markdown
        attributes:
          value: "Please answer these questions before submitting your issue. Thanks!"
      - type: input
        id: url
        attributes:
          label: "What is the URL of the page with the issue?"
        validations:
          required: true
      - type: input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. CONTRIBUTING.md

    See the [security policy](https://golang.org/security) for details.
    
    The recommended way to file an issue is by running `go bug`.
    Otherwise, when filing an issue, make sure to answer these five questions:
    
    1. What version of Go are you using (`go version`)?
    2. What operating system and processor architecture are you using?
    3. What did you do?
    4. What did you expect to see?
    5. What did you see instead?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. internal/config/dns/types.go

    	// DNS name.
    	TargetStrip int `json:"targetstrip,omitempty"`
    
    	// Group is used to group (or *not* to group) different services
    	// together. Services with an identical Group are returned in
    	// the same answer.
    	Group string `json:"group,omitempty"`
    
    	// Key carries the original key used during Put().
    	Key string `json:"-"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 01 21:59:40 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/04-vuln.yml

    description: Issues or feature requests about Go vulnerability management
    title: "x/vuln: issue title"
    labels: ["vulncheck or vulndb"]
    body:
      - type: markdown
        attributes:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 04 23:31:17 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top