Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for fname1 (0.05 sec)

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

    1. .isEqualTo("<< 0x00000003 226 DATA END_STREAM")
    2. assertThat(frameLog(false, 0, 8, TYPE_GOAWAY, FLAG_NONE))
    3. .isEqualTo(">> 0x00000000 8 GOAWAY ")
    4. }
    5.  
    6. /** Window update frames have special formatting. */
    7. @Test
    8. fun windowUpdateFrames() {
    9. assertThat(frameLogWindowUpdate(false, 0, 4, Int.MAX_VALUE.toLong()))
    10. .isEqualTo(">> 0x00000000 4 WINDOW_UPDATE 2147483647")
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. 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)
  3. ci/official/containers/linux_arm64/devel.usertools/wheel_verification.bats

    1. # Suite of verification tests for the SINGLE TensorFlow wheel in /tf/pkg
    2. # or whatever path is set as $TF_WHEEL.
    3.  
    4. setup_file() {
    5. cd /tf/pkg
    6. if [[ -z "$TF_WHEEL" ]]; then
    7. export TF_WHEEL=$(find /tf/pkg -iname "*.whl")
    8. fi
    9. }
    10.  
    11. teardown_file() {
    12. rm -rf /tf/venv
    13. }
    14.  
    15. @test "Wheel is manylinux2014 (manylinux_2_17) compliant" {
    16. python3 -m auditwheel show "$TF_WHEEL" > audit.txt
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/HttpHeaders.java

    1. public static final String X_FRAME_OPTIONS = "X-Frame-Options";
    2. /** The HTTP {@code X-Powered-By} header field name. */
    3. public static final String X_POWERED_BY = "X-Powered-By";
    4. /**
    5. * The HTTP <a href="http://tools.ietf.org/html/draft-evans-palmer-key-pinning">{@code
    6. * Public-Key-Pins}</a> header field name.
    7. *
    8. * @since 15.0
    9. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 01 19:08:38 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    1. const fin = true
    2. var frame ws.Frame
    3. if s.ClientSide() {
    4. // We do not need to copy the payload, since we own it.
    5. payload := p
    6.  
    7. frame = ws.NewFrame(op, fin, payload)
    8. frame = ws.MaskFrameInPlace(frame)
    9. } else {
    10. frame = ws.NewFrame(op, fin, p)
    11. }
    12.  
    13. return ww.writeFrame(w, frame)
    14. }
    15.  
    16. // writeFrame writes frame binary representation into w.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jul 29 18:10:04 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  6. istioctl/pkg/analyze/analyze.go

    1. for i, a := range analyzers {
    2. analyzerNames[i] = a.Metadata().Name
    3. nameToAnalyzer[a.Metadata().Name] = a
    4. }
    5. sort.Strings(analyzerNames)
    6.  
    7. var b strings.Builder
    8. for _, aName := range analyzerNames {
    9. b.WriteString(fmt.Sprintf("* %s:\n", aName))
    10. a := nameToAnalyzer[aName]
    11. if a.Metadata().Description != "" {
    12. b.WriteString(fmt.Sprintf(" %s\n", a.Metadata().Description))
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Thu Oct 31 06:53:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. 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)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/android/AndroidLog.kt

    1. LinkedHashMap<String, String>().apply {
    2. val packageName = OkHttpClient::class.java.`package`?.name
    3.  
    4. if (packageName != null) {
    5. this[packageName] = "OkHttp"
    6. }
    7.  
    8. this[OkHttpClient::class.java.name] = "okhttp.OkHttpClient"
    9. this[Http2::class.java.name] = "okhttp.Http2"
    10. this[TaskRunner::class.java.name] = "okhttp.TaskRunner"
    11. this["okhttp3.mockwebserver.MockWebServer"] = "okhttp.MockWebServer"
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. src/main/java/jcifs/dcerpc/msrpc/srvsvc.java

    1. public String name;
    2.  
    3.  
    4. @Override
    5. public void encode ( NdrBuffer _dst ) throws NdrException {
    6. _dst.align(4);
    7. _dst.enc_ndr_long(this.platform_id);
    8. _dst.enc_ndr_referent(this.name, 1);
    9.  
    10. if ( this.name != null ) {
    11. _dst = _dst.deferred;
    12. _dst.enc_ndr_string(this.name);
    13.  
    14. }
    15. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:40:13 UTC 2019
    - 19.9K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

    1. final List<Integer> completeLengthChecks;
    2. final int baseStackDepth;
    3. ExecutorService service = Executors.newFixedThreadPool(5);
    4. try {
    5. // Avoid counting frames from the executor itself, or the ExecutionSequencer
    6. baseStackDepth =
    7. serializer
    8. .submit(
    9. new Callable<Integer>() {
    10. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top