Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for T1b (0.01 sec)

  1. pkg/test/framework/test.go

    	//                             // Run in parallel with T1b
    	//                         })
    	//                     ctx.NewSubTest("T1b").
    	//                         RunParallel(func(ctx framework.TestContext) {
    	//                             // Run in parallel with T1a
    	//                         })
    	//                     // Exits before T1a and T1b are run.
    	//                 })
    	//
    	//             ctx.NewSubTest("T2").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls2/decls2a.go

    func (x *T1) f /* ERROR "field and method with the same name f" */ () {}
    
    // Conflict between embedded field and method name,
    // with the embedded field being a basic type.
    type T1b struct {
    	int
    }
    
    func (T1b) int /* ERROR "field and method" */ () {}
    
    type T1c struct {
    	time.Time
    }
    
    func (T1c) Time /* ERROR "field and method with the same name Time" */ () int { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. tests/integration/README.md

                                // Run in parallel with T1b
                            })
                        ctx.NewSubTest("T1b").
                            RunParallel(func(ctx framework.TestContext) {
                                // Run in parallel with T1a
                            })
                        // Exits before T1a and T1b are run.
                    })
    
                ctx.NewSubTest("T2").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. src/encoding/gob/encoder_test.go

    	}
    
    	data := buf.Bytes()
    	for i := 0; i <= len(data); i++ {
    		bufr := bytes.NewReader(data[:i])
    
    		// Decode both values, stopping at the first error.
    		var t1b, t2b T
    		dec := NewDecoder(bufr)
    		var err error
    		err = dec.Decode(&t1b)
    		if err == nil {
    			err = dec.Decode(&t2b)
    		}
    
    		switch i {
    		case t1start, t2start:
    			// Either the first or the second Decode calls had zero input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top