Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,198 for a$b (0.04 sec)

  1. 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)
  2. src/internal/types/testdata/fixedbugs/issue51229.go

    type myByte byte
    
    func _(a []byte, b []myByte) {
    	f00(a, b)
    	f01(a, b)
    	f02(a, b)
    	f03(a, b)
    	f04(a, b)
    	f05(a, b)
    	f06(a, b)
    	f07(a, b)
    	f08(a, b)
    	f09(a, b)
    	f10(a, b)
    	f11(a, b)
    	f12(a, b)
    	f13(a, b)
    	f14(a, b)
    	f15(a, b)
    	f16(a, b)
    	f17(a, b)
    	f18(a, b)
    	f19(a, b)
    	f20(a, b)
    	f21(a, b)
    	f22(a, b)
    	f23(a, b)
    }
    
    // Constraint type inference may have to iterate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/go/parser/short_test.go

    	`package p; func _[T any](x T)`,
    	`package p; func _[T1, T2 any](x T)`,
    	`package p; func _[A, B any](a A) B`,
    	`package p; func _[A, B C](a A) B`,
    	`package p; func _[A, B C[A, B]](a A) B`,
    
    	`package p; type _[A, B any] interface { _(a A) B }`,
    	`package p; type _[A, B C[A, B]] interface { _(a A) B }`,
    	`package p; func _[T1, T2 interface{}](x T1) T2`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  4. src/slices/zsortanyfunc.go

    func order2CmpFunc[E any](data []E, a, b int, swaps *int, cmp func(a, b E) int) (int, int) {
    	if cmp(data[b], data[a]) < 0 {
    		*swaps++
    		return b, a
    	}
    	return a, b
    }
    
    // medianCmpFunc returns x where data[x] is the median of data[a],data[b],data[c], where x is a, b, or c.
    func medianCmpFunc[E any](data []E, a, b, c int, swaps *int, cmp func(a, b E) int) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 23:33:29 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SortedMapDiffUtilTest.groovy

            ['a']                | ['b']                | ['a']                | []         | ['b']
            ['a', 'b', 'd']      | ['c', 'e', 'f', 'g'] | ['a', 'b', 'd']      | []         | ['c', 'e', 'f', 'g']
            ['a', 'b', 'd', 'e'] | ['c', 'e', 'f', 'g'] | ['a', 'b', 'd']      | ['e']      | ['c', 'f', 'g']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/conversion/converter_test.go

    	if err := c.RegisterUntypedConversionFunc(
    		(*A)(nil), (*B)(nil),
    		func(a, b interface{}, s Scope) error {
    			return convertFn(a.(*A), b.(*B), s)
    		},
    	); err != nil {
    		t.Fatalf("unexpected error %v", err)
    	}
    	if err := c.RegisterIgnoredConversion(&A{}, &B{}); err != nil {
    		t.Fatal(err)
    	}
    	a := A{}
    	b := B{}
    	if err := c.Convert(&a, &b, nil); err != nil {
    		t.Errorf("%v", err)
    	}
    	if count != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 06 06:28:24 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_386.s

    	LEAL	const(e)(SI*1), e
    
    #define ROUND1(a, b, c, d, e, index) \
    	LOAD(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND1x(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC1(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x5A827999)
    
    #define ROUND2(a, b, c, d, e, index) \
    	SHUFFLE(index, e); \
    	FUNC2(a, b, c, d, e); \
    	MIX(a, b, c, d, e, 0x6ED9EBA1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        assertThat(url.resolve("g;x?y#s")).isEqualTo(parse("http://a/b/c/g;x?y#s"))
        assertThat(url.resolve("")).isEqualTo(parse("http://a/b/c/d;p?q"))
        assertThat(url.resolve(".")).isEqualTo(parse("http://a/b/c/"))
        assertThat(url.resolve("./")).isEqualTo(parse("http://a/b/c/"))
        assertThat(url.resolve("..")).isEqualTo(parse("http://a/b/"))
        assertThat(url.resolve("../")).isEqualTo(parse("http://a/b/"))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/cmd/distpack/archive_test.go

    	ok      bool
    }{
    	{"a", "a", true},
    	{"a", "b", false},
    	{"a/**", "a", true},
    	{"a/**", "b", false},
    	{"a/**", "a/b", true},
    	{"a/**", "b/b", false},
    	{"a/**", "a/b/c/d/e/f", true},
    	{"a/**", "z/a/b/c/d/e/f", false},
    	{"**/a", "a", true},
    	{"**/a", "b", false},
    	{"**/a", "x/a", true},
    	{"**/a", "x/a/b", false},
    	{"**/a", "x/y/z/a", true},
    	{"**/a", "x/y/z/a/b", false},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 21:29:13 UTC 2023
    - 938 bytes
    - Viewed (0)
  10. test/fixedbugs/issue56923.go

    package p
    
    type Eq[T any] interface {
    	Eqv(a T, b T) bool
    }
    
    type EqFunc[T any] func(a, b T) bool
    
    func (r EqFunc[T]) Eqv(a, b T) bool {
    	return r(a, b)
    }
    
    func New[T any](f func(a, b T) bool) Eq[T] {
    	return EqFunc[T](f)
    }
    
    func Equal(a, b []byte) bool {
    	return string(a) == string(b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 496 bytes
    - Viewed (0)
Back to top