Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,112 for a$b (0.19 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/TaskOrderSpecsTest.groovy

        def "can match order exactly (#executedTasks)"() {
            def spec = exact(':a', ':b', ':c')
    
            when:
            spec.assertMatches(-1, executedTasks)
    
            then:
            noExceptionThrown()
    
            where:
            executedTasks << [
                [':a', ':b', ':c'],
                [':a', ':b', ':c', ':d'],
                [':z', ':a', ':b', ':c'],
                [':a', ':z', ':b', ':c'],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/testdata/issue43527.go

    type (
            // 0 and 1-element []-lists are syntactically valid
            _[A, B /* ERROR missing type constraint */ ] int
            _[A, /* ERROR missing type parameter name */ interface{}] int
            _[A, B, C /* ERROR missing type constraint */ ] int
            _[A B, C /* ERROR missing type constraint */ ] int
            _[A B, /* ERROR missing type parameter name */ interface{}] int
            _[A B, /* ERROR missing type parameter name */ interface{}, C D] int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 01 17:49:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/collect/PersistentListTest.groovy

            where:
            elements << [["a"], ["a", "b"]]
        }
    
        def "has a nice toString method"() {
            expect:
            PersistentList.of().toString() == "Nil"
            PersistentList.of("a").toString() == "a"
            PersistentList.of("a", "b").toString() == "a : b"
            PersistentList.of("a", "b", "c").toString() == "a : b : c"
            PersistentList.of("a", "b", "c", "d").toString() == "a : b : c : d"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3RegionalResourceTest.groovy

            new URI("s3://somebucket.au.s3.eu-central-1.amazonaws.com/a/b/file.txt")      | Optional.of(getRegion(Regions.EU_CENTRAL_1))                        | 'somebucket.au' | 'a/b/file.txt'
            new URI("s3://somebucket.au.s3-eu-central-1.amazonaws.com/a/b/file.txt")      | Optional.of(getRegion(Regions.EU_CENTRAL_1))                        | 'somebucket.au' | 'a/b/file.txt'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. src/net/http/routing_tree_test.go

    	}
    
    	test(getTestTree(), []testCase{
    		{"GET", "", "/a", "/a", nil},
    		{"Get", "", "/b", "", nil},
    		{"Get", "", "/a/b", "/a/b", nil},
    		{"Get", "", "/a/c", "/a/{x}", []string{"c"}},
    		{"Get", "", "/a/b/", "/a/b/{$}", nil},
    		{"Get", "", "/a/b/c", "/a/b/{y}", []string{"c"}},
    		{"Get", "", "/a/b/c/d", "/a/b/{x...}", []string{"c/d"}},
    		{"Get", "", "/g/h/i", "/g/h/i", nil},
    		{"Get", "", "/g/h/j", "/g/{x}/j", []string{"h"}},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/FileUtilsTest.groovy

            toRoots(files("a", "b", "c")) == files("a", "b", "c")
            toRoots(files("a/a", "a/a/a", "a/b/a")) == files("a/a", "a/b/a")
            toRoots(files("a/a/a", "a/a", "a/b/a")) == files("a/a", "a/b/a")
            toRoots(files("a/a", "a/a-1", "a/a/a")) == files("a/a", "a/a-1")
            toRoots(files("a/a", "a/a/a", "b/a/a")) == files("a/a", "b/a/a")
            toRoots(files("a/a/a/a/a/a/a/a/a", "a/b")) == files("a/a/a/a/a/a/a/a/a", "a/b")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  7. src/internal/diff/testdata/triv.txt

    Anchored diff gives up on finding anything,
    since there are no unique lines.
    
    -- old --
    a
    b
    c
    a
    b
    b
    a
    -- new --
    c
    a
    b
    a
    b
    c
    -- diff --
    diff old new
    --- old
    +++ new
    @@ -1,7 +1,6 @@
    -a
    -b
    -c
    -a
    -b
    -b
    -a
    +c
    +a
    +b
    +a
    +b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 356 bytes
    - Viewed (0)
  8. src/go/printer/testdata/comments2.golden

    	/* b */ 0,
    }
    
    var _ = T{ /* a */ {}}
    
    var _ = T{ /* a */ /* b */ {}}
    
    var _ = T{	/* a */	/* b */
    	/* c */ {},
    }
    
    var _ = T{	/* a */	/* b */
    	/* c */
    	/* d */ {},
    }
    
    var _ = T{
    	/* a */
    	/* b */ {},
    }
    
    var _ = []T{
    	func() {
    		var _ = [][]int{
    			/*       a, b, c, d, e */
    			/* a */ {0, 0, 0, 0, 0},
    			/* b */ {0, 5, 4, 4, 4},
    			/* c */ {0, 4, 5, 4, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/cmd/internal/quoted/quoted_test.go

    		{name: "two", value: "a b", want: []string{"a", "b"}},
    		{name: "two_multi_space", value: "a  b", want: []string{"a", "b"}},
    		{name: "two_tab", value: "a\tb", want: []string{"a", "b"}},
    		{name: "two_newline", value: "a\nb", want: []string{"a", "b"}},
    		{name: "quote_single", value: `'a b'`, want: []string{"a b"}},
    		{name: "quote_double", value: `"a b"`, want: []string{"a b"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 27 16:39:27 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceParallelExecutionIntegrationTest.groovy

        @Rule
        public final BlockingHttpServer blockingServer = new BlockingHttpServer()
    
        def setup() {
            blockingServer.start()
    
            createDirs("a", "b", "c")
            settingsFile << """
                include 'a', 'b', 'c'
            """
            buildFile << """
                allprojects {
                    task ping {
                        def projectName = project.name
                        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top