Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for fixedbugs (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/syntax/parser.go

    	// report error at line of ':' token
    	p.syntaxErrorAt(s.pos, "missing statement after label")
    	// we are already at the end of the labeled statement - no need to advance
    	return nil // avoids follow-on errors (see e.g., fixedbugs/bug274.go)
    }
    
    // context must be a non-empty string unless we know that p.tok == _Lbrace.
    func (p *parser) blockStmt(context string) *BlockStmt {
    	if trace {
    		defer p.trace("blockStmt")()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/generic.rules

    (Zero {t} [s] dst1 zero:(Zero {t} [s] dst2 _)) && isSamePtr(dst1, dst2) => zero
    (Zero {t} [s] dst1 vardef:(VarDef (Zero {t} [s] dst2 _))) && isSamePtr(dst1, dst2) => vardef
    
    // Elide self-moves. This only happens rarely (e.g test/fixedbugs/bug277.go).
    // However, this rule is needed to prevent the previous rule from looping forever in such cases.
    (Move dst src mem) && isSamePtr(dst, src) => mem
    
    // Constant rotate detection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  6. .idea/misc.xml

              <item index="3" class="java.lang.String" itemvalue="com.android.annotations.Nullable" />
              <item index="4" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
              <item index="5" class="java.lang.String" itemvalue="io.reactivex.annotations.Nullable" />
              <item index="6" class="java.lang.String" itemvalue="io.reactivex.rxjava3.annotations.Nullable" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. gradle/libs.versions.toml

    conscrypt-openjdk = { module = "org.conscrypt:conscrypt-openjdk-uber", version.ref = "org-conscrypt" }
    eclipseOsgi = "org.eclipse.platform:org.eclipse.osgi:3.19.0"
    findbugs-jsr305 = "com.google.code.findbugs:jsr305:3.0.2"
    gradlePlugin-android = "com.android.tools.build:gradle:8.2.0"
    gradlePlugin-androidJunit5 = "de.mannodermaus.gradle.plugins:android-junit5:1.10.0.0"
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 06 05:06:52 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/compile/internal/ssagen/ssa.go

    			if n.Bounded() && ir.IsConst(n.X, constant.String) && ir.IsConst(n.Index, constant.Int) {
    				// Replace "abc"[1] with 'b'.
    				// Delayed until now because "abc"[1] is not an ideal constant.
    				// See test/fixedbugs/issue11370.go.
    				return s.newValue0I(ssa.OpConst8, types.Types[types.TUINT8], int64(int8(ir.StringVal(n.X)[ir.Int64Val(n.Index)])))
    			}
    			a := s.expr(n.X)
    			i := s.expr(n.Index)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  10. pom.xml

    				</exclusion>
    				<exclusion>
    					<groupId>org.checkerframework</groupId>
    					<artifactId>checker-qual</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>com.google.code.findbugs</groupId>
    					<artifactId>jsr305</artifactId>
    				</exclusion>
    				<exclusion>
    					<groupId>com.google.errorprone</groupId>
    					<artifactId>error_prone_annotations</artifactId>
    				</exclusion>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top