Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,264 for didn (0.09 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:bar:1.0") {
                        edge("org:foo:[1.0,1.2]", "org:foo:1.1").byConstraint('didn\'t match version 1.2 because tested versions')
                    }
                    constraint("org:foo:[1.0,1.1]", "org:foo:1.1").byConstraint('didn\'t match version 1.2 because tested versions')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRendererTest.groovy

            signatureFailure("Maven", ['abcd': signatureError(FAILED)])             | 'Artifact was signed with key abcd (not found) but signature didn\'t match'
            signatureFailure("Maven", ['abcd': signatureError(IGNORED_KEY)])        | 'Artifact was signed with an ignored key: abcd (not found)'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  3. src/encoding/xml/read_test.go

      This fixes the buggy tab rendering that can be seen at
    http://codereview.appspot.com/116075/diff/1/2
    
    The fundamental problem was that the tab code was
    not being told what column the text began in, so it
    didn't know where to put the tab stops.  Another problem
    was that some of the code assumed that string byte
    offsets were the same as column offsets, which is only
    true if there are no tabs.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testerrors/ptr_test.go

    	// Imports
    	did1 := make(map[string]bool)
    	did2 := make(map[string]bool)
    	did1["os"] = true // for ptrTestMain
    	fmt.Fprintf(&cgo1, "import \"os\"\n")
    
    	for _, pt := range ptrTests {
    		did := did1
    		cgo := &cgo1
    		if strings.Contains(pt.support, "//export") {
    			did = did2
    			cgo = &cgo2
    		}
    		for _, imp := range pt.imports {
    			if !did[imp] {
    				did[imp] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    			p = pi
    		} else {
    			p = v
    		}
    		wg.Add(1)
    		go func(pi madmin.PeerInfo, dID string) {
    			defer wg.Done()
    			admClient, err := c.getAdminClient(ctx, dID)
    			if dID == peer.DeploymentID {
    				admClient, err = c.getAdminClientWithEndpoint(ctx, dID, pi.Endpoint)
    			}
    			if err != nil {
    				errs[dID] = errSRPeerResp(fmt.Errorf("unable to create admin client for %s: %w", pi.Name, err))
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. test/fixedbugs/bug441.go

    // Was discarding function calls made for arguments named _
    // in inlined functions.  Issue 3593.
    
    package main
    
    var did int
    
    func main() {
    	foo(side())
    	foo2(side(), side())
    	foo3(side(), side())
    	T.m1(T(side()))
    	T(1).m2(side())
    	const want = 7
    	if did != want {
    		println("BUG: missing", want-did, "calls")
    	}
    }
    
    func foo(_ int) {}
    func foo2(_, _ int) {}
    func foo3(int, int) {}
    type T int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 641 bytes
    - Viewed (0)
  7. src/go/doc/comment/testdata/linklist.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Did you know?
    
      - [encoding/json.Marshal] is a doc link. So is [encoding/json.Unmarshal].
    -- text --
    Did you know?
    
      - encoding/json.Marshal is a doc link. So is encoding/json.Unmarshal.
    -- markdown --
    Did you know?
    
      - [encoding/json.Marshal](https://pkg.go.dev/encoding/json#Marshal) is a doc link. So is [encoding/json.Unmarshal](https://pkg.go.dev/encoding/json#Unmarshal).
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 657 bytes
    - Viewed (0)
  8. .github/ISSUE_TEMPLATE/03-gopls.yml

          description: "Output of `go env` on the command line in your workspace directory"
          render: shell
        validations:
          required: true
      - type: textarea
        id: what-did-you-do
        attributes:
          label: "What did you do?"
          description: "If possible, provide a recipe for reproducing the error. A complete runnable program is good. A link on [go.dev/play](https://go.dev/play) is better. A failing unit test is the best."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:09:04 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/util/ConcurrentSpecificationTest.groovy

            }
    
            then:
            1 * action.run() >> { executed.done() }
        }
    
        @FailsWithMessage(type = IllegalStateException, message = 'Expected async action to complete, but it did not.')
        def "async action fails when expected mock method is never called"() {
            Runnable action = Mock()
            def executed = startsAsyncAction()
    
            when:
            executed.started {}
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 07 08:18:50 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/linklist2.txt

    {"DocLinkBaseURL": "https://pkg.go.dev"}
    -- input --
    Did you know?
    
      - [testing.T] is one doc link.
      - So is [testing.M].
      - So is [testing.B].
        This is the same list paragraph.
    
        There is [testing.PB] in this list item, too!
    -- text --
    Did you know?
    
      - testing.T is one doc link.
    
      - So is testing.M.
    
      - So is testing.B. This is the same list paragraph.
    
        There is testing.PB in this list item, too!
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 30 21:57:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top