Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/runtime/race/testdata/issue12664_test.go

    		issue12664 = "bye"
    		close(c)
    	}()
    	fmt.Println(issue12664)
    	<-c
    }
    
    type MyI interface {
    	foo()
    }
    
    type MyT int
    
    func (MyT) foo() {
    }
    
    var issue12664_2 MyT = 0
    
    func TestRaceIssue12664_2(t *testing.T) {
    	c := make(chan struct{})
    	go func() {
    		issue12664_2 = 1
    		close(c)
    	}()
    	func(x MyI) {
    		// Never true, but prevents inlining.
    		if x.(MyT) == -1 {
    			close(c)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. src/encoding/xml/read_test.go

        <B></B>
        <BPtr></BPtr>
        <Bs></Bs>
        <BPtrs></BPtrs>
        <Bytes></Bytes>
        <BytesPtr></BytesPtr>
        <S></S>
        <SPtr></SPtr>
        <Ss></Ss>
        <SPtrs></SPtrs>
        <MyI></MyI>
        <Child></Child>
        <Children></Children>
        <ChildPtr></ChildPtr>
        <X></X>
    </Parent>
    `
    )
    
    // golang.org/issues/13417
    func TestUnmarshalEmptyValues(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        </magic>
        <sub-class-of type="application/x-mysql-db"/>
      </mime-type>
      <mime-type type="application/x-mysql-misam-compressed-index">
        <_comment>MySQL MISAM Compressed Index</_comment>
        <glob pattern="*.MYI"/>
        <magic priority="40">
          <match value="0xfefe06" type="string" offset="0"/>
          <match value="0xfefe07" type="string" offset="0"/>
        </magic>
        <sub-class-of type="application/x-mysql-db"/>
    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