Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 3,311 for doens (0.35 sec)

  1. src/internal/types/testdata/fixedbugs/issue60946.go

    	// these are not ok (interface and non-interface types)
    	g(t, t1 /* ERROR "does not match" */)
    	g(t1, t /* ERROR "does not match" */)
    	g(tn, t1 /* ERROR "does not match" */)
    	g(t1, tn /* ERROR "does not match" */)
    
    	g(t, t1 /* ERROR "does not match" */, t2)
    	g(t1, t2 /* ERROR "does not match" */, t)
    	g(tn, t1 /* ERROR "does not match" */, t2)
    	g(t1, t2 /* ERROR "does not match" */, tn)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 26 18:33:36 UTC 2023
    - 836 bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/public-api-mutable-file-collection.txt

    Method <org.gradle.api.plugins.quality.PmdExtension.getRuleSetFiles()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (PmdExtension.java:0)
    Method <org.gradle.api.tasks.SourceSet.getAnnotationProcessorPath()> does not have raw return type assignable to org.gradle.api.file.ConfigurableFileCollection in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. test/closure3.dir/main.go

    			return x + 2
    		}
    		y, sink = func(x int) int { // ERROR "can inline main.func9" "func literal does not escape"
    			return x + 1
    		}, 42
    		if y(40) != 41 {
    			ppanic("y(40) != 41")
    		}
    	}
    
    	{
    		func() { // ERROR "func literal does not escape"
    			y := func(x int) int { // ERROR "can inline main.func10.1" "func literal does not escape"
    				return x + 2
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:29 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. test/escape_struct_param1.go

    	ps2 := &s2
    	ps4 := &s4
    	ps6 := &s6 // ERROR "moved to heap: ps6$"
    	u1 := U{&s1, &ps2}
    	u2 := &U{&s3, &ps4}  // ERROR "&U{...} does not escape$"
    	u3 := &U{&s5, &ps6}  // ERROR "&U{...} does not escape$"
    	v := &V{u1, u2, &u3} // ERROR "&V{...} does not escape$"
    	Ssink = v.UPiSPPia() // Ssink = *&ps4 = &s4 (only &s4 really escapes)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  5. test/escape_struct_param2.go

    	ps2 := &s2
    	ps4 := &s4
    	ps6 := &s6 // ERROR "moved to heap: ps6$"
    	u1 := U{&s1, &ps2}
    	u2 := &U{&s3, &ps4}  // ERROR "&U{...} does not escape$"
    	u3 := &U{&s5, &ps6}  // ERROR "&U{...} does not escape$"
    	v := &V{u1, u2, &u3} // ERROR "&V{...} does not escape$"
    	Ssink = v.UPiSPPia() // Ssink = *&ps4 = &s4 (only &s4 really escapes)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  6. src/go/types/errsupport.go

    	// misspelled     x.Foo   ==    FoO    type X has no field or method Foo, but does have field FoO
    	// misspelled     x.Foo   ==    foo    type X has no field or method Foo, but does have field foo
    	// misspelled     x.Foo   ==    foO    type X has no field or method Foo, but does have field foO
    	//
    	// misspelled     x.foo   ==    Foo    type X has no field or method foo, but does have field Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. test/fixedbugs/issue7921.go

    func bufferNoEscape2(xs []string) int { // ERROR "xs does not escape$"
    	b := bytes.NewBuffer(make([]byte, 0, 64)) // ERROR "&bytes.Buffer{...} does not escape$" "make\(\[\]byte, 0, 64\) does not escape$" "inlining call to bytes.NewBuffer$"
    	for _, x := range xs {
    		b.WriteString(x)
    	}
    	return b.Len() // ERROR "inlining call to bytes.\(\*Buffer\).Len$"
    }
    
    func bufferNoEscape3(xs []string) string { // ERROR "xs does not escape$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 19:43:26 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/errsupport.go

    	// misspelled     x.Foo   ==    FoO    type X has no field or method Foo, but does have field FoO
    	// misspelled     x.Foo   ==    foo    type X has no field or method Foo, but does have field foo
    	// misspelled     x.Foo   ==    foO    type X has no field or method Foo, but does have field foO
    	//
    	// misspelled     x.foo   ==    Foo    type X has no field or method foo, but does have field Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/internal/types/testdata/spec/comparable.go

    func _[P comparable, Q ~int, R any]() {
    	_ = f1[int]
    	_ = f1[T /* T does satisfy comparable */]
    	_ = f1[any /* any does satisfy comparable */]
    	_ = f1[P]
    	_ = f1[Q]
    	_ = f1[R /* ERROR "R does not satisfy comparable" */]
    
    	_ = f2[int]
    	_ = f2[T /* T does satisfy comparable */]
    	_ = f2[any /* any does satisfy comparable */]
    	_ = f2[P]
    	_ = f2[Q]
    	_ = f2[R /* ERROR "R does not satisfy comparable" */]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 680 bytes
    - Viewed (0)
  10. test/fixedbugs/issue37837.dir/b.go

    	_ = a.G(1).(*int)                                 // ERROR "inlining call to a.G" "does not escape"
    	_ = a.G(2.0).(*float64)                           // ERROR "inlining call to a.G" "does not escape"
    	_ = (*a.G("").(*interface{})).(string)            // ERROR "inlining call to a.G" "does not escape"
    	_ = (*a.G(([]byte)(nil)).(*interface{})).([]byte) // ERROR "inlining call to a.G" "does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 06 20:49:11 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top