Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for m1v (0.02 sec)

  1. test/typeparam/issue44688.go

    	d.m1(arg)
    	d.m2(arg)
    
    	// calling method expressions
    	m1x := B1[T].m1
    	m1x(b1, arg)
    	// TODO(khr): reenable these.
    	//m2x := B2[T].m2
    	//m2x(b2, arg)
    
    	// calling method values
    	m1v := b1.m1
    	m1v(arg)
    	m2v := b1.m2
    	m2v(arg)
    	b2v := b2.m2
    	b2v(arg)
    }
    
    func test2() {
    	// calling embedded methods
    	var b1 B1[string]
    	b1.A1 = &A1[string]{}
    	b1.A2 = &ImpA2[string]{}
    
    	b1.A1.m1("")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue44688.go

    	// a deeper nesting
    	var d D[string]
    	d.m1("")
    	d.m2("")
    
    	// calling method expressions
    	m1x := B1[string].m1
    	m1x(b1, "")
    	m2x := B2[string].m2
    	m2x(b2, "")
    
    	// calling method values
    	m1v := b1.m1
    	m1v("")
    	m2v := b1.m2
    	m2v("")
    	b2v := b2.m2
    	b2v("")
    }
    
    // actual test case from issue
    
    type A[T any] struct{}
    
    func (*A[T]) f(T) {}
    
    type B[T any] struct{ A[T] }
    
    func _() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="\000\000\001\272" type="string" offset="0"/>
        </magic>
        <glob pattern="*.mpeg"/>
        <glob pattern="*.mpg"/>
        <glob pattern="*.mpe"/>
        <glob pattern="*.m1v"/>
        <glob pattern="*.m2v"/>
      </mime-type>
    
      <mime-type type="video/mpeg4-generic"/>
      <mime-type type="video/mpv"/>
      <mime-type type="video/nv"/>
    
      <mime-type type="video/ogg">
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top