Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,112 for a$b (0.11 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/VfsRelativePathTest.groovy

            '/'                    | ''
            '/var/log/messages'    | 'var/log/messages'
            '//uncMount/some/path' | 'uncMount/some/path'
            '/a'                   | 'a'
            '/a/b/c'               | 'a/b/c'
            '/a/b/c/'              | 'a/b/c'
            ''                     | ''
        }
    
        def "'#relativePath' fromChild '#child' is '#result'"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/MultiProjectDependencyIntegrationTest.groovy

    }
    """
            executer.withArgument('--info')
        }
    
        def "project dependency c->[a,b]"() {
            projectDependency from: 'c', to: ['a', 'b']
            when:
            run ':c:build'
    
            then:
            jarsBuilt 'a', 'b', 'c'
            depsCopied 'a', []
            depsCopied 'b', []
            depsCopied 'c', ['a', 'b']
        }
    
        def "project dependency c->b->a"() {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/diff/diff.go

    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/util/dump"
    )
    
    func legacyDiff(a, b interface{}) string {
    	return cmp.Diff(a, b)
    }
    
    // StringDiff diffs a and b and returns a human readable diff.
    // DEPRECATED: use github.com/google/go-cmp/cmp.Diff
    func StringDiff(a, b string) string {
    	return legacyDiff(a, b)
    }
    
    // ObjectDiff prints the diff of two go objects and fails if the objects
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelectionTest.groovy

            expect:
            select('a.b.c', 'a.b.c').includedTests == ['a.b/c']
        }
    
        def "ignores conceptual duplicate filters"() {
            expect:
            select('a.b.*', 'a.b.c', 'a.d.e').includedTests == ['a.b', 'a.d/e']
            select('a.b.c', 'a.d.e', 'a.b.*').includedTests == ['a.d/e', 'a.b']
            select('a.b', 'a.b.c', 'a.d.e').includedTests == ['a.b', 'a.d/e']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue43087.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	a, b, b /* ERROR "b repeated on left side of :=" */ := 1, 2, 3
    	_ = a
    	_ = b
    }
    
    func _() {
    	a, _, _ := 1, 2, 3 // multiple _'s ok
    	_ = a
    }
    
    func _() {
    	var b int
    	a, b, b /* ERROR "b repeated on left side of :=" */ := 1, 2, 3
    	_ = a
    	_ = b
    }
    
    func _() {
    	var a []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 726 bytes
    - Viewed (0)
  6. pilot/pkg/xds/util_test.go

    	tests := []struct {
    		data  []string
    		limit int
    		want  string
    	}{
    		{
    			[]string{"a", "b", "c"},
    			2,
    			"a, and 2 others",
    		},
    		{
    			[]string{"a", "b", "c"},
    			4,
    			"a, b, c",
    		},
    		{
    			[]string{"a", "b", "c"},
    			1,
    			"a, b, c",
    		},
    		{
    			[]string{"a", "b", "c"},
    			0,
    			"a, b, c",
    		},
    		{
    			[]string{},
    			3,
    			"",
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/NamespaceBuilderTest.groovy

            ":a"       | "a"
            ":abc"     | "abc"
            ":a:b:c"   | "a_b_c"
            ":a:b:c:"  | "a_b_c"
            "a-b-c"    | "a_b_c"
            "-a-b-c-"  | "a_b_c"
            "::a::b::" | "a_b"
            "a b c"    | "a_b_c"
            "  a b c " | "a_b_c"
            "~abc"     | "abc"
            "~a~b~c~"  | "a_b_c"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. test/typeparam/cons.go

    	return casecons.Apply(xs)
    }
    
    type mapNil[a, b any] struct {
    }
    
    func (m mapNil[a, b]) Apply(_ Nil[a]) any {
    	return Nil[b]{}
    }
    
    type mapCons[a, b any] struct {
    	f Function[a, b]
    }
    
    func (m mapCons[a, b]) Apply(xs Cons[a]) any {
    	return Cons[b]{m.f.Apply(xs.Head), Map[a, b](m.f, xs.Tail)}
    }
    
    func Map[a, b any](f Function[a, b], xs List[a]) List[b] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 21 23:41:49 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionParserTest.groovy

            version.parts as List == parts
    
            where:
            versionStr      | parts
            'a.b.c'         | ['a', 'b', 'c']
            'a-b-c'         | ['a', 'b', 'c']
            'a_b_c'         | ['a', 'b', 'c']
            'a+b+c'         | ['a', 'b', 'c']
            'a.b-c+d_e'     | ['a', 'b', 'c', 'd', 'e']
            '\u03b1-\u03b2' | ['\u03b1', '\u03b2']
        }
    
        def "splits on adjacent digits and alpha"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/go/doc/example_internal_test.go

    		{
    			name: "one group",
    			in: `package p
    import (
    	"a"
    	"b"
    	"c"
    	"d"
    )
    `,
    			want: []string{"a"},
    		},
    		{
    			name: "several groups",
    			in: `package p
    import (
    	"a"
    
    	"b"
    	"c"
    
    	"d"
    )
    `,
    			want: []string{"a", "b", "d"},
    		},
    		{
    			name: "extra space",
    			in: `package p
    import (
    	"a"
    
    
    	"b"
    	"c"
    
    
    	"d"
    )
    `,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 14:22:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top