Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for issue39256 (0.17 sec)

  1. src/cmd/link/internal/ld/elf_test.go

    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("Failed to get working directory: %v", err)
    	}
    
    	path := filepath.Join(dir, "x")
    	argv := []string{"build", "-o", path, filepath.Join(wd, "testdata", "issue39256")}
    	out, err := testenv.Command(t, testenv.GoToolPath(t), argv...).CombinedOutput()
    	if err != nil {
    		t.Fatalf("Build failure: %s\n%s\n", err, string(out))
    	}
    
    	f, err := elf.Open(path)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue39725.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 523 bytes
    - Viewed (0)
  3. src/internal/types/testdata/fixedbugs/issue39755.go

    Robert Griesemer <******@****.***> 1662082688 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 507 bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue39976.go

    Robert Griesemer <******@****.***> 1684877561 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 22:13:57 UTC 2023
    - 392 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue39754.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 580 bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue49276.go

    Robert Griesemer <******@****.***> 1670366619 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 932 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue49296.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 560 bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue59956.go

    Robert Griesemer <******@****.***> 1683176727 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 17:35:44 UTC 2023
    - 873 bytes
    - Viewed (0)
  9. src/runtime/testdata/testprogcgo/threadprof.go

    	spinlock = 0;
    	return NULL;
    }
    
    // This constructor function is run when the program starts.
    // It is used for the CgoExternalThreadSIGPROF test.
    __attribute__((constructor)) void issue9456() {
    	if (getenv("GO_START_SIGPROF_THREAD") != NULL) {
    		pthread_t tid;
    		pthread_create(&tid, 0, thread1, NULL);
    	}
    }
    
    void **nullptr;
    
    void *crash(void *p) {
    	*nullptr = p;
    	return 0;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 22:43:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    	tmpdir := t.TempDir()
    
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("where am I? %v", err)
    	}
    	pdir := filepath.Join(wd, "testdata", "issue39757")
    	f := gobuildTestdata(t, tmpdir, pdir, DefaultOpt)
    	defer f.Close()
    
    	syms, err := f.Symbols()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	var addr uint64
    	for _, sym := range syms {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top