Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,534 for Example (0.15 sec)

  1. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/ExampleSelfLinkProcessor.java

        }
    
        @Override
        public Document process(Document document) {
            List<StructuralNode> examples = document.findBy(EXAMPLE_SELECTOR);
            for (StructuralNode example : examples) {
                if (example.hasAttribute("title")) {
                    // Using attribute value, since it contains Asciidoc markup, as opposed to getTitle() that returns rendered html
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/go/doc/comment/testdata/link6.txt

    And https://example.com/[foo]/bar{.
    And https://example.com/(foo)/bar!
    And https://example.com/{foo}/bar{.
    And https://example.com/)baz{foo}.
    
    [And https://example.com/].
    
    -- text --
    URLs with punctuation are hard. We don't want to consume the end-of-sentence
    punctuation.
    
    For example, https://en.wikipedia.org/wiki/John_Adams_(miniseries).
    And https://example.com/[foo]/bar{. And https://example.com/(foo)/bar! And
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/work_sync.txt

    -- a/go.mod --
    go 1.18
    
    module example.com/a
    
    require (
    	example.com/p v1.0.0
    	example.com/q v1.1.0
    	example.com/r v1.0.0
    )
    
    replace (
    	example.com/p => ../p
    	example.com/q => ../q
    	example.com/r => ../r
    )
    -- a/want_go.mod --
    go 1.18
    
    module example.com/a
    
    require (
    	example.com/p v1.1.0
    	example.com/q v1.1.0
    )
    
    replace (
    	example.com/p => ../p
    	example.com/q => ../q
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/exceptions/FormattingDiagnosticsVisitorTest.groovy

        def "formats candidates with examples"() {
            def visitor = new FormattingDiagnosticsVisitor()
    
            given:
            visitor.candidate("thing 1")
            visitor.candidate("thing 2").example("a")
            visitor.candidate("thing 3").example("a").example("b")
    
            expect:
            visitor.candidates == ["thing 1", "thing 2, for example a.", "thing 3, for example a, b."]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_get_issue47979.txt

    )
    
    require (
    	example.net/a v0.1.0
    	example.net/other v0.1.0
    )
    
    require example.net/indirect v0.1.0 // indirect
    -- go.mod.want --
    module golang.org/issue47979
    
    go 1.17
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/a v0.2.0 => ./a2
    	example.net/indirect v0.1.0 => ./indirect1
    	example.net/indirect v0.2.0 => ./indirect2
    	example.net/other v0.1.0 => ./other
    	example.net/other v0.2.0 => ./other
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    go get example.net/tools@v0.1.0
    ! stderr 'no Go source files'
    
    ! go list example.net/tools
    stderr '^package example.net/tools: build constraints exclude all Go files in .*[/\\]tools$'
    
    go list -tags=tools -e -deps example.net/tools
    stdout '^example.net/cmd/tool$'
    stdout '^example.net/missing$'
    
    go list -deps example.net/cmd/tool
    
    ! go list example.net/missing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_tidy_version.txt

    	example.net/d v0.1.0 => ./d
    	example.net/d v0.2.0 => ./d
    )
    -- go.mod.115from116 --
    module example.com/m
    
    go 1.15
    
    require example.net/a v0.1.0
    
    require example.net/c v0.1.0 // indirect
    
    replace (
    	example.net/a v0.1.0 => ./a
    	example.net/a v0.2.0 => ./a
    	example.net/b v0.1.0 => ./b
    	example.net/b v0.2.0 => ./b
    	example.net/c v0.1.0 => ./c
    	example.net/c v0.2.0 => ./c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 02 23:07:08 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_e.txt

    stderr '^go: example.com/untidy tested by\n\texample.com/untidy.test imports\n\texample.net/directtestnotfound: cannot find module providing package example.net/directtestnotfound: module example.net/directtestnotfound: reading http://.*: 404 Not Found$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_import_toolchain.txt

    require (
    	example.net/c v0.1.0 // indirect
    	example.net/d v0.2.0 // indirect
    )
    
    replace (
    	example.net/a v0.1.0 => ./a1
    	example.net/a v0.2.0 => ./a2
    	example.net/b v0.1.0 => ./b1
    	example.net/c v0.1.0 => ./c1
    	example.net/d v0.1.0 => ./d1
    	example.net/d v0.2.0 => ./d2
    )
    -- example.go --
    package example
    
    import (
    	_ "example.net/a"
    	_ "example.net/b"
    )
    -- a1/go.mod --
    module example.net/a
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_downup_indirect_pruned.txt

    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    -- go.mod.down1 --
    module example.com/a
    
    go 1.17
    
    require (
    	example.com/b v0.1.0
    	example.com/c v0.2.0
    )
    
    require example.com/d v0.1.0 // indirect
    
    replace (
    	example.com/b v0.1.0 => ./b1
    	example.com/b v0.2.0 => ./b2
    	example.com/c v0.1.0 => ./c1
    	example.com/c v0.2.0 => ./c2
    	example.com/d v0.1.0 => ./d
    	example.com/d v0.2.0 => ./d
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top