Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for fixedbugs (0.13 sec)

  1. src/cmd/compile/internal/types2/validtype.go

    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    		// if check.valids.lookup(t) != nil {
    		// 	break
    		// }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 13:22:37 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/go/types/validtype.go

    		//
    		// // Exit early if we already know t is valid.
    		// // This is purely an optimization but it prevents excessive computation
    		// // times in pathological cases such as testdata/fixedbugs/issue6977.go.
    		// // (Note: The valids map could also be allocated locally, once for each
    		// // validType call.)
    		// if check.valids.lookup(t) != nil {
    		// 	break
    		// }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/branches.go

    func (ls *labelScope) enclosingTarget(b *block, name string) *LabeledStmt {
    	if l := ls.labels[name]; l != nil {
    		l.used = true // even if it's not a valid target (see e.g., test/fixedbugs/bug136.go)
    		for ; b != nil; b = b.parent {
    			if l.lstmt == b.lstmt {
    				return l.lstmt
    			}
    		}
    		return invalid
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  4. src/go/types/check_test.go

    func TestExamples(t *testing.T)  { testDirFiles(t, "../../internal/types/testdata/examples", false) }
    func TestFixedbugs(t *testing.T) { testDirFiles(t, "../../internal/types/testdata/fixedbugs", false) }
    func TestLocal(t *testing.T)     { testDirFiles(t, "testdata/local", false) }
    
    func testDirFiles(t *testing.T, dir string, manual bool) {
    	testenv.MustHaveGoBuild(t)
    	dir = filepath.FromSlash(dir)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/go/types/stdlib_test.go

    func TestStdFixed(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "fixedbugs"),
    		"bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore
    		"bug398.go",      // go/types doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/stdlib_test.go

    func TestStdFixed(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	if testing.Short() && testenv.Builder() == "" {
    		t.Skip("skipping in short mode")
    	}
    
    	testTestDir(t, filepath.Join(testenv.GOROOT(t), "test", "fixedbugs"),
    		"bug248.go", "bug302.go", "bug369.go", // complex test instructions - ignore
    		"bug398.go",      // types2 doesn't check for anonymous interface cycles (go.dev/issue/56103)
    		"issue6889.go",   // gc-specific test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check_test.go

    	testDirFiles(t, "../../../../internal/types/testdata/examples", 125, false)
    } // TODO(gri) narrow column tolerance
    func TestFixedbugs(t *testing.T) {
    	testDirFiles(t, "../../../../internal/types/testdata/fixedbugs", 100, false)
    }                            // TODO(gri) narrow column tolerance
    func TestLocal(t *testing.T) { testDirFiles(t, "testdata/local", 0, false) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/stmt.go

    			}
    
    		case ir.OCONVNOP:
    			arg := arg.(*ir.ConvExpr)
    
    			// For unsafe.Pointer->uintptr conversion arguments, save the
    			// unsafe.Pointer argument. This is necessary to handle cases
    			// like fixedbugs/issue24491a.go correctly.
    			//
    			// TODO(mdempsky): Limit to static callees with
    			// //go:uintptr{escapes,keepalive}?
    			if arg.Type().IsUintptr() && arg.X.Type().IsUnsafePtr() {
    				visit(&arg.X)
    				return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  9. test/gcgort.go

    // license that can be found in the LICENSE file.
    
    // Test independent goroutines modifying a comprehensive
    // variety of vars during aggressive garbage collection.
    
    // The point is to catch GC regressions like fixedbugs/issue22781.go
    
    package main
    
    import (
    	"errors"
    	"runtime"
    	"runtime/debug"
    	"sync"
    )
    
    const (
    	goroutines = 8
    	allocs     = 8
    	mods       = 8
    
    	length = 9
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 08 21:15:48 UTC 2018
    - 34.5K bytes
    - Viewed (0)
  10. fess-crawler/pom.xml

    		</dependency>
    		<dependency>
    			<groupId>io.minio</groupId>
    			<artifactId>minio</artifactId>
    			<version>${minio.version}</version>
    			<exclusions>
    				<exclusion>
    					<groupId>com.google.code.findbugs</groupId>
    					<artifactId>annotations</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>stax</groupId>
    					<artifactId>stax-api</artifactId>
    				</exclusion>
    			</exclusions>
    		</dependency>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top