Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,670 for doens (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. test/newinline.go

    }
    
    func select1(x, y chan bool) int { // ERROR "can inline select1" "x does not escape" "y does not escape"
    	select {
    	case <-x:
    		return 1
    	case <-y:
    		return 2
    	}
    }
    
    func select2(x, y chan bool) { // ERROR "can inline select2" "x does not escape" "y does not escape"
    loop: // test that labeled select can be inlined.
    	select {
    	case <-x:
    		break loop
    	case <-y:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. test/inline.go

    }
    
    func select1(x, y chan bool) int { // ERROR "can inline select1" "x does not escape" "y does not escape"
    	select {
    	case <-x:
    		return 1
    	case <-y:
    		return 2
    	}
    }
    
    func select2(x, y chan bool) { // ERROR "can inline select2" "x does not escape" "y does not escape"
    loop: // test that labeled select can be inlined.
    	select {
    	case <-x:
    		break loop
    	case <-y:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/model/InstantiatorBackedObjectFactory.java

            throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named objects");
        }
    
        @Override
        public SourceDirectorySet sourceDirectorySet(String name, String displayName) {
            throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing source directory sets");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top