Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for fname1 (0.06 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

    1. while (buffer.size != 1024L) source.read(buffer, 1024)
    2. stream1.close(ErrorCode.CANCEL, null)
    3. val frame1 = peer.takeFrame()
    4. assertThat(frame1.type).isEqualTo(Http2.TYPE_HEADERS)
    5. val frame2 = peer.takeFrame()
    6. assertThat(frame2.type).isEqualTo(Http2.TYPE_RST_STREAM)
    7. val frame3 = peer.takeFrame()
    8. assertThat(frame3.type).isEqualTo(Http2.TYPE_RST_STREAM)
    9. assertThat(connection.readBytes.acknowledged).isEqualTo(0L)
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

    1. assertThat(firstFrame(logs, "HEADERS")!!, "header logged")
    2. .contains("HEADERS END_HEADERS")
    3. // While MockWebServer waits to read the client's HEADERS frame before sending the response, it
    4. // doesn't wait to read the client's DATA frame and may send a DATA frame before the client
    5. // does. So we can't assume the client's empty DATA will be logged first.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

    1. * Fix: Don't reuse connections after an unsuccessful `Expect: 100-continue`.
    2. * Fix: Handle either `TLS_` or `SSL_` prefixes for cipher suite names. This is necessary for
    3. IBM JVMs that use the `SSL_` prefix exclusively.
    4. * Fix: Reject HTTP/2 data frames if the stream ID is 0.
    5. * New: Upgrade to Okio 1.12.0.
    6.  
    7. ```xml
    8. <dependency>
    9. <groupId>com.squareup.okio</groupId>
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    1. }
    2.  
    3. // Function is being used in an expression, to e.g. pass around a C function pointer.
    4. // Create a new Name for this Ref which causes the variable to be declared in Go land.
    5. fpName := "fp_" + r.Name.Go
    6. name := f.Name[fpName]
    7. if name == nil {
    8. name = &Name{
    9. Go: fpName,
    10. C: r.Name.C,
    11. Kind: "fpvar",
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 18 15:07:34 UTC 2024
    - 97.1K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

    1. writeTimeout = checkDuration("duration", duration)
    2. }
    3.  
    4. /**
    5. * Sets the interval between HTTP/2 and web socket pings initiated by this client. Use this to
    6. * automatically send ping frames until either the connection fails or it is closed. This keeps
    7. * the connection alive and may detect connectivity failures.
    8. *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. src/archive/zip/reader_test.go

    1. <-done
    2. }
    3. }
    4.  
    5. func equalTimeAndZone(t1, t2 time.Time) bool {
    6. name1, offset1 := t1.Zone()
    7. name2, offset2 := t2.Zone()
    8. return t1.Equal(t2) && name1 == name2 && offset1 == offset2
    9. }
    10.  
    11. func readTestFile(t *testing.T, zt ZipTest, ft ZipTestFile, f *File, raw []byte) {
    12. if f.Name != ft.Name {
    13. t.Errorf("name=%q, want %q", f.Name, ft.Name)
    14. }
    15. if !ft.Modified.IsZero() && !equalTimeAndZone(f.Modified, ft.Modified) {
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 25 00:25:45 UTC 2024
    - 55.6K bytes
    - Viewed (0)
  7. tests/migrate_test.go

    1. }
    2.  
    3. if DB.Migrator().HasConstraint(&User{}, name) {
    4. t.Fatalf("constraint %v should been deleted", name)
    5. }
    6.  
    7. if err := DB.Migrator().CreateConstraint(&User{}, name); err != nil {
    8. t.Fatalf("failed to create constraint %v, got error %v", name, err)
    9. }
    10.  
    11. if !DB.Migrator().HasConstraint(&User{}, name) {
    12. t.Fatalf("failed to found constraint %v", name)
    13. }
    14. }
    15. }
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
Back to top