Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,613 for a$b (0.04 sec)

  1. src/go/doc/comment/testdata/head2.txt

    -- input --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    ✦
    -- gofmt --
    ✦
    
    Almost a+heading
    
    ✦
    
    Don't be a heading
    
    ✦
    
    # A.b is a heading
    
    ✦
    
    A. b is not a heading
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:46 UTC 2022
    - 232 bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensibleDynamicObjectTestHelper.groovy

        }
    
        public static void assertCanCallMethods (ExtensibleDynamicObjectTest.Bean bean) {
            assertEquals(bean.javaMethod('a', 'b'), 'java:a.b')
            assertTrue(bean.hasMethod('conventionMethod', 'a', 'b'))
            assertEquals(bean.conventionMethod('a', 'b'), 'convention:a.b')
        }
    
        public static void decorateGroovyBean(bean) {
            Map values = [:]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. test/simassign.go

    // license that can be found in the LICENSE file.
    
    // Test simultaneous assignment.
    
    package main
    
    var a, b, c, d, e, f, g, h, i int
    
    func printit() {
    	println(a, b, c, d, e, f, g, h, i)
    }
    
    func testit(permuteok bool) bool {
    	if a+b+c+d+e+f+g+h+i != 45 {
    		print("sum does not add to 45\n")
    		printit()
    		return false
    	}
    	return permuteok ||
    		a == 1 &&
    			b == 2 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    		return Convert_core_AWSElasticBlockStoreVolumeSource_To_v1_AWSElasticBlockStoreVolumeSource(a.(*core.AWSElasticBlockStoreVolumeSource), b.(*v1.AWSElasticBlockStoreVolumeSource), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1.Affinity)(nil), (*core.Affinity)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. test/fixedbugs/issue39651.go

    // flags.
    
    package main
    
    //go:noinline
    func f(x, y float64, a, b *bool, r *int64) {
    	*a = x < y    // set flags
    	*r = int64(x) // clobber flags
    	*b = x == y   // use flags
    }
    
    func main() {
    	var a, b bool
    	var r int64
    	f(1, 1, &a, &b, &r)
    	if a || !b {
    		panic("comparison incorrect")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 18 16:36:16 UTC 2020
    - 514 bytes
    - Viewed (0)
  6. src/regexp/onepass_test.go

    	{`^[a-c]*`, false},
    	{`^...$`, true},
    	{`^(?:a|(?:aa))$`, true},
    	{`^a((b))c$`, true},
    	{`^a.[l-nA-Cg-j]?e$`, true},
    	{`^a((b))$`, true},
    	{`^a(?:(b)|(c))c$`, true},
    	{`^a(?:(b*)|(c))c$`, false},
    	{`^a(?:b|c)$`, true},
    	{`^a(?:b?|c)$`, true},
    	{`^a(?:b?|c?)$`, false},
    	{`^a(?:b?|c+)$`, true},
    	{`^a(?:b+|(bc))d$`, false},
    	{`^a(?:bc)+$`, true},
    	{`^a(?:[bcd])+$`, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/util_test.go

    		{"a/../", "a/../"},
    
    		// Path prefix matches
    		{"a/b", "a"},
    		{"a/b", "a/"},
    		{"中文/", "中文"},
    	}
    	for i, tc := range validTestcases {
    		if !hasPathPrefix(tc.s, tc.prefix) {
    			t.Errorf(`%d: Expected hasPathPrefix("%s","%s") to be true`, i, tc.s, tc.prefix)
    		}
    	}
    
    	invalidTestcases := []struct {
    		s      string
    		prefix string
    	}{
    		// Mismatch
    		{"a", "b"},
    
    		// Dir requirement
    		{"a", "a/"},
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 28 02:01:09 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  8. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    		return Convert_v1alpha2_AllocationResult_To_resource_AllocationResult(a.(*v1alpha2.AllocationResult), b.(*resource.AllocationResult), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*resource.AllocationResult)(nil), (*v1alpha2.AllocationResult)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  9. test/fixedbugs/bug289.go

    // https://code.google.com/p/gofrontend/issues/detail?id=1
    
    package main
    
    func f1() {
    	a, b := f() // ERROR "assignment mismatch|does not match|cannot initialize"
    	_, _ = a, b
    }
    
    func f2() {
    	var a, b int
    	a, b = f() // ERROR "assignment mismatch|does not match|cannot assign"
    	_, _ = a, b
    }
    
    func f() int {
    	return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 28 14:28:33 UTC 2023
    - 495 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go

    		"_", "a_", "_a", "a_b", "1_", "_1", "1_2",
    		".", "a.", ".a", "a..b", "1.", ".1", "1..2",
    		" ", "a ", " a", "a b", "1 ", " 1", "1 2",
    		"A.a", "aB.a", "ab.A", "A1.a", "a1.A",
    		"A.1", "aB.1", "A1.1", "1A.1",
    		"0.A", "01.A", "012.A", "1A.a", "1a.A",
    		"A.B.C.D.E", "AA.BB.CC.DD.EE", "a.B.c.d.e", "aa.bB.cc.dd.ee",
    		"a@b", "a,b", "a_b", "a;b",
    		"a:b", "a%b", "a?b", "a$b",
    		strings.Repeat("a", 254),
    	}
    	for _, val := range badValues {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 04:51:54 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top