Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for go2 (0.04 sec)

  1. src/go/parser/testdata/issue49482.go2

    Robert Griesemer <******@****.***> 1651599742 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 20:20:27 UTC 2022
    - 965 bytes
    - Viewed (0)
  2. src/go/parser/testdata/issue50427.go2

    Robert Findley <******@****.***> 1643845227 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 04 00:43:57 UTC 2022
    - 533 bytes
    - Viewed (0)
  3. src/go/parser/testdata/issue49174.go2

    Robert Findley <******@****.***> 1635340790 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 15:32:59 UTC 2021
    - 225 bytes
    - Viewed (0)
  4. src/go/parser/testdata/issue49175.go2

    Robert Griesemer <******@****.***> 1698787325 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 325 bytes
    - Viewed (0)
  5. src/go/parser/testdata/map.go2

    Rob Findley <******@****.***> 1605629213 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  6. src/go/parser/testdata/resolution/typeparams.go2

    Robert Griesemer <******@****.***> 1698787325 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/go/parser/testdata/slices.go2

    Rob Findley <******@****.***> 1605629213 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 24 19:44:06 UTC 2020
    - 666 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/msan5.go

    /*
    #include <stdlib.h>
    
    extern void Go1(int*);
    extern void Go2(char*);
    
    // Use weak as a hack to permit defining a function even though we use export.
    void C1() __attribute__ ((weak));
    void C2() __attribute__ ((weak));
    
    void C1() {
    	int i;
    	Go1(&i);
    	if (i != 42) {
    		abort();
    	}
    }
    
    void C2() {
    	char a[2];
    	a[1] = 42;
    	Go2(a);
    	if (a[0] != 42) {
    		abort();
    	}
    }
    */
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 904 bytes
    - Viewed (0)
  9. test/label.go

    L9:
    	switch {
    	case true:
    		break L9
    	defalt: // ERROR "label .*defalt.* defined and not used"
    	}
    
    L10:
    	select {
    	default:
    		break L10
    	}
    
    	goto L10
    
    	goto go2 // ERROR "label go2 not defined|reference to undefined label .*go2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 28 02:31:54 UTC 2020
    - 1K bytes
    - Viewed (0)
  10. src/cmd/internal/archive/archive_test.go

    			go1obj := filepath.Join(buildDir, "go1.o")
    			go2obj := filepath.Join(buildDir, "go2.o")
    			goarchive := filepath.Join(buildDir, "go.a")
    			cgoarchive := ""
    
    			gotool, err := testenv.GoTool()
    			if err != nil {
    				return err
    			}
    
    			go1src := filepath.Join("testdata", "go1.go")
    			go2src := filepath.Join("testdata", "go2.go")
    
    			importcfgfile := filepath.Join(buildDir, "importcfg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top