Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,260 for anotherOk (0.26 sec)

  1. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store-another.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load-another.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/list6.txt

    -- input --
    Text.
     - List immediately after.
     - Another.
    
    More text.
    
     - List after blank line.
     - Another.
    
    Even more text.
     - List immediately after.
    
     - Blank line between items.
    
    Yet more text.
    
     - Another list after blank line.
    
     - Blank line between items.
    
    Still more text.
     - One list item.
    
       Multiple paragraphs.
    -- dump --
    Doc
    	Paragraph
    		Plain "Text."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_compile_multi_pkg.txt

    ! go test -c ./...
    stderr '^cannot write test binary pkg1.test for multiple packages:\nexample/anotherpkg/pkg1\nexample/pkg/pkg1'
    
    ! go test -c -o $WORK/bin/test/ ./...
    stderr '^cannot write test binary pkg1.test for multiple packages:\nexample/anotherpkg/pkg1\nexample/pkg/pkg1'
    
    ! go test -o $WORK/bin/filename.exe ./pkg/...
    stderr '^with multiple packages, -o must refer to a directory or '$devnull
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:09:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/tasks/internal/RelativeFileNameTransformerTest.groovy

            "subdir"                   | "../../subdir"
            "subdir/child.txt"         | "../../subdir/child.txt"
            "subdir/another"           | "../../subdir/another"
            "subdir/another/child.txt" | "../../subdir/another/child.txt"
            "another/dir/child.txt"    | "../../another/dir/child.txt"
        }
    
        def "returns relative path where file shared some of current dir path"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. src/go/doc/comment/testdata/list4.txt

    -- input --
    Text.
      1. List
    2. Not indented, not a list.
      3. Another list.
    
    -- gofmt --
    Text.
     1. List
    
    2. Not indented, not a list.
     3. Another list.
    
    -- text --
    Text.
     1. List
    
    2. Not indented, not a list.
     3. Another list.
    
    -- markdown --
    Text.
    
     1. List
    
    2\. Not indented, not a list.
    
     3. Another list.
    
    -- html --
    <p>Text.
    <ol>
    <li>List
    </ol>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 421 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_outside_module.txt

    go build -x -mod=mod my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=readonly my-module/vendor/example.com/another-module/foo/bar/baz.go
    go build -x -mod=vendor my-module/vendor/example.com/another-module/foo/bar/baz.go
    
    # baz_with_outside_dep.go (with a non-std dependency) works with -mod=mod
    # but not with -mod=readonly and -mod=vendor.
    go build -x -mod=mod my-module/vendor/example.com/another-module/foo/bar/baz_with_outside_dep.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 20:24:57 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/collections/ImmutableFilteredListTest.groovy

        }
    
        def "can exclude items from another ImmutableFilteredList"() {
            given:
            def list = ImmutableFilteredList.allOf([1, 2, 3, 4, 5, 6])
            def another = list.matching(x -> x % 2 == 0)
    
            expect:
            list.withoutIndexFrom(0, list) == [2, 3, 4, 5, 6]
            list.withoutIndexFrom(0, another) == [1, 3, 4, 5, 6]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

        def "reports project structure with single composite"() {
            given:
            createDirs("p1", "p2", "p2/p22", "another")
            file("settings.gradle") << """rootProject.name = 'my-root-project'
    include('p1')
    include('p2')
    include('p2:p22')
    includeBuild('another')"""
            file('another/settings.gradle').touch()
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Projects:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                problem("Build file 'build.gradle': line 11: Project ':' cannot access 'myExtension' extension on another project ':a'")
                problem("Build file 'build.gradle': line 3: Project ':' cannot access 'Project.plugins' functionality on another project ':a'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top