Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 57 for fixedbugs (0.32 sec)

  1. 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)
  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/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)
  5. 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)
  6. 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)
  7. okhttp-sse/build.gradle.kts

    )
    
    dependencies {
      api(projects.okhttp)
      compileOnly(libs.findbugs.jsr305)
    
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(libs.junit)
      testCompileOnly(libs.findbugs.jsr305)
    }
    
    mavenPublishing {
      configure(KotlinJvm(javadocJar = JavadocJar.Empty()))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 754 bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/build.gradle.kts

      "Automatic-Module-Name: okhttp3.logging",
      "Bundle-SymbolicName: com.squareup.okhttp3.logging"
    )
    
    dependencies {
      api(projects.okhttp)
      compileOnly(libs.findbugs.jsr305)
    
      testCompileOnly(libs.findbugs.jsr305)
      testImplementation(libs.junit)
      testImplementation(projects.mockwebserver3)
      testImplementation(projects.mockwebserver3Junit5)
      testImplementation(projects.okhttpTestingSupport)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 842 bytes
    - Viewed (0)
  9. guava/module.json

              "module": "listenablefuture",
              "version": {
                "requires": "9999.0-empty-to-avoid-conflict-with-guava"
              }
            },
            {
              "group": "com.google.code.findbugs",
              "module": "jsr305",
              "version": {
                "requires": "${jsr305.version}"
              }
            },
            {
              "group": "org.checkerframework",
              "module": "checker-qual",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 18:11:49 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  10. okhttp-android/build.gradle.kts

    }
    
    dependencies {
      api(libs.squareup.okio)
      api(projects.okhttp)
      api(projects.loggingInterceptor)
      compileOnly(libs.androidx.annotation)
      compileOnly(libs.findbugs.jsr305)
      debugImplementation(libs.androidx.annotation)
      debugImplementation(libs.findbugs.jsr305)
      compileOnly(libs.animalsniffer.annotations)
      compileOnly(libs.robolectric.android)
    
      testImplementation(libs.junit)
      testImplementation(libs.junit.ktx)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 11:07:32 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top