Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,613 for a$b (0.15 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. src/net/http/pattern_test.go

    		{"/{a}/a/", "/a/{z}/", "/ax/a/"},
    		{"/a/{z}/{x...}", "/{z}/b/{y...}", "/a/z/"},
    		{"/{z}/b/{y...}", "/a/{z}/{x...}", "/z/b/"},
    		{"/a/b/", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c/d", "/a/b/"},
    		{"/a/b/{x...}", "/a/b/c/d/", "/a/b/"},
    		{"/a/{z}/{m...}", "/{z}/a/", "/a/z/"},
    		{"/{z}/a/", "/a/{z}/{m...}", "/z/a/"},
    		{"/{z}/{$}", "/a/", "/z/"},
    		{"/a/", "/{z}/{$}", "/a/x"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K 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. 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)
  6. src/main/java/jcifs/smb1/util/MD4.java

            C = GG(C, D, A, B, X[ 9],  9);
            B = GG(B, C, D, A, X[13], 13);
            A = GG(A, B, C, D, X[ 2],  3);
            D = GG(D, A, B, C, X[ 6],  5);
            C = GG(C, D, A, B, X[10],  9);
            B = GG(B, C, D, A, X[14], 13);
            A = GG(A, B, C, D, X[ 3],  3);
            D = GG(D, A, B, C, X[ 7],  5);
            C = GG(C, D, A, B, X[11],  9);
            B = GG(B, C, D, A, X[15], 13);
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  7. src/path/example_test.go

    	// Clean("a/c/b/..") = "a/c"
    	// Clean("/../a/c") = "/a/c"
    	// Clean("/../a/b/../././/c") = "/a/c"
    	// Clean("") = "."
    }
    
    func ExampleDir() {
    	fmt.Println(path.Dir("/a/b/c"))
    	fmt.Println(path.Dir("a/b/c"))
    	fmt.Println(path.Dir("/a/"))
    	fmt.Println(path.Dir("a/"))
    	fmt.Println(path.Dir("/"))
    	fmt.Println(path.Dir(""))
    	// Output:
    	// /a/b
    	// a/b
    	// /a
    	// a
    	// /
    	// .
    }
    
    func ExampleExt() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 19 00:10:22 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. test/64bit.go

    	"}\n" +
    	"\n" +
    	"func testInt64Binary(a, b, add, sub, mul, div, mod, and, or, xor, andnot int64, dodiv bool) {\n" +
    	"	if n, op, want := a + b, `+`, add; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    	"	if n, op, want := a - b, `-`, sub; n != want { ok=false; println(`int64`, a, op, b, `=`, n, `should be`, want); }\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 30 19:21:08 UTC 2013
    - 24.8K bytes
    - Viewed (0)
Back to top