Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for bug5 (0.13 sec)

  1. okhttp/src/test/java/okhttp3/CallTest.kt

          .assertFailureMatches("(?s)Hostname localhost not verified.*")
      }
    
      /**
       * Anonymous cipher suites were disabled in OpenJDK because they're rarely used and permit
       * man-in-the-middle attacks. https://bugs.openjdk.java.net/browse/JDK-8212823
       */
      @Test
      fun anonCipherSuiteUnsupported() {
        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    nsw.edu.au
    nt.edu.au
    qld.edu.au
    sa.edu.au
    tas.edu.au
    vic.edu.au
    wa.edu.au
    // act.gov.au  Bug 984824 - Removed at request of Greg Tankard
    // nsw.gov.au  Bug 547985 - Removed at request of <******@****.***>
    // nt.gov.au  Bug 940478 - Removed at request of Greg Connors <******@****.***>
    qld.gov.au
    sa.gov.au
    tas.gov.au
    vic.gov.au
    wa.gov.au
    // 4LDs
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

            "strictly '[1.1, 1.4]'"             | "versions of foo verified to run on platform Y" | '1.4'    | "didn't match versions 2.0, 1.5 because "
            "prefer '[1.0, 1.4]'; reject '1.4'" | "1.4 has a critical bug"                        | '1.3'    | "rejected version 1.4 because "
        }
    
        def "renders custom dependency reasons"() {
            given:
            mavenRepo.module("org", "foo", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	if len(out) > 0 {
    		// Filter out useless linker warnings caused by bugs outside Go.
    		// See also cmd/link/internal/ld's hostlink method.
    		var save [][]byte
    		var skipLines int
    		for _, line := range bytes.SplitAfter(out, []byte("\n")) {
    			// golang.org/issue/26073 - Apple Xcode bug
    			if bytes.Contains(line, []byte("ld: warning: text-based stub file")) {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"brunei":                               "\U0001f1e7\U0001f1f3",
    	"bubble_tea":                           "\U0001f9cb",
    	"bucket":                               "\U0001faa3",
    	"bug":                                  "\U0001f41b",
    	"building_construction":                "\U0001f3d7\ufe0f",
    	"bulb":                                 "\U0001f4a1",
    	"bulgaria":                             "\U0001f1e7\U0001f1ec",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/common/routing.go

    				call:   c.CallOrFail,
    				opts:   tcpCallopts,
    				skip: skip{
    					skip:   c.Config().WorkloadClass() == echo.Proxyless,
    					reason: "", // TODO: is this a bug or WAI?
    				},
    			})
    			t.RunTraffic(TrafficTestCase{
    				name:   "http cookie with ttl" + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(cookieWithTTLDest, ""),
    				call:   c.CallOrFail,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    	defer closeDB(t, db)
    
    	// This WithCancel is important; Rows contains an optimization to avoid
    	// spawning a goroutine when the query/transaction context cannot be
    	// canceled, but this test tests a bug which is caused by said goroutine.
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	r, err := db.QueryContext(ctx, "SELECT|people|name|")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    		numReqs++
    		if numReqs == 1 {
    			size0 = readBufLen()
    			req.Body.Close()
    			size1 = readBufLen()
    		}
    	}))
    	<-conn.closec
    	if numReqs < 1 || numReqs > 2 {
    		t.Fatalf("%d. bug in test. unexpected number of requests = %d", i, numReqs)
    	}
    	didSearch := size0 != size1
    	if didSearch != tt.wantEOFSearch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	// Ideally it should work and we should be able to call the
    	// Set and Get methods.
    	shouldPanic("", func() {
    		StructOf(fields)
    	})
    }
    
    func TestStructOfTooManyFields(t *testing.T) {
    	// Bug Fix: #25402 - this should not panic
    	tt := StructOf([]StructField{
    		{Name: "Time", Type: TypeOf(time.Time{}), Anonymous: true},
    	})
    
    	if _, present := tt.MethodByName("After"); !present {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top