Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for sponge (0.12 sec)

  1. okhttp/src/test/java/okhttp3/internal/ws/WebSocketReaderTest.kt

      }
    
      @Test fun clientTwoFrameHelloWithPongs() {
        data.write("010348656c".decodeHex()) // Hel
        data.write("8a00".decodeHex()) // Pong
        data.write("8a00".decodeHex()) // Pong
        data.write("8a00".decodeHex()) // Pong
        data.write("8a00".decodeHex()) // Pong
        data.write("80026c6f".decodeHex()) // lo
        clientReader.processNextFrame()
        callback.assertPong(EMPTY)
        callback.assertPong(EMPTY)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/HeadersJvmTest.kt

            .add("ping:  pong  ") // Value whitespace is trimmed.
            .add("kit:kat") // Space after colon is not required.
            .build()
        assertThat(headers.values("foo")).containsExactly("bar", "baz", "bak")
        assertThat(headers.values("key")).containsExactly("value")
        assertThat(headers.values("ping")).containsExactly("pong")
        assertThat(headers.values("kit")).containsExactly("kat")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/ws/WebSocketRecorder.kt

      }
    
      fun assertPing(payload: ByteString) {
        assertThat(nextEvent()).isEqualTo(Ping(payload))
      }
    
      fun assertPong(payload: ByteString) {
        assertThat(nextEvent()).isEqualTo(Pong(payload))
      }
    
      fun assertClosing(
        code: Int,
        reason: String,
      ) {
        assertThat(nextEvent()).isEqualTo(Closing(code, reason))
      }
    
      fun assertClosed(
        code: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // DEGRADED PING
        peer.acceptFrame() // AWAIT PING
        peer.sendFrame().ping(true, Http2Connection.DEGRADED_PING, 1) // DEGRADED PONG
        peer.sendFrame().ping(true, Http2Connection.AWAIT_PING, 0) // AWAIT PONG
        peer.play()
    
        // Play it back.
        val connection = connect(peer)
        val stream = connection.newStream(headerEntries("b", "banana"), false)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  5. internal/grid/connection.go

    		atomic.StoreInt64(&c.LastPong, time.Now().UnixNano())
    		return
    	}
    	var pong pongMsg
    	_, err := pong.UnmarshalMsg(m.Payload)
    	PutByteBuffer(m.Payload)
    	gridLogIf(ctx, err)
    	if m.MuxID == 0 {
    		atomic.StoreInt64(&c.LastPong, time.Now().UnixNano())
    		return
    	}
    	if v, ok := c.outgoing.Load(m.MuxID); ok {
    		v.pong(pong)
    	} else {
    		// We don't care if the client was removed in the meantime,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  6. src/runtime/mgcsweep.go

    	// Unfortunately we can't sweep the span ourselves. Somebody else
    	// got to it first. We don't have efficient means to wait, but that's
    	// OK, it will be swept fairly soon.
    	for {
    		spangen := atomic.Load(&s.sweepgen)
    		if spangen == sl.sweepGen || spangen == sl.sweepGen+3 {
    			break
    		}
    		osyield()
    	}
    }
    
    // sweep frees or collects finalizers for blocks not marked in the mark phase.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  7. src/image/png/reader_test.go

    			continue
    		}
    		defer sf.Close()
    		sb := bufio.NewScanner(sf)
    
    		// Compare the two, in SNG format, line by line.
    		for {
    			pdone := !pb.Scan()
    			sdone := !sb.Scan()
    			if pdone && sdone {
    				break
    			}
    			if pdone || sdone {
    				t.Errorf("%s: Different sizes", fn)
    				break
    			}
    			ps := pb.Text()
    			ss := sb.Text()
    
    			// Newer versions of the sng command line tool append an optional
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 12:12:12 UTC 2022
    - 28.5K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/security/simple-oauth2.md

    Und die Spezifikation sagt, dass die Felder so benannt werden müssen. `user-name` oder `email` würde also nicht funktionieren.
    
    Aber keine Sorge, Sie können sie Ihren Endbenutzern im Frontend so anzeigen, wie Sie möchten.
    
    Und Ihre Datenbankmodelle können beliebige andere Namen verwenden.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:44 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. pkg/credentialprovider/keyring_test.go

    		// direct match deeper than other possible matches
    		{"bar.example.com/pong", []AuthConfig{grace, ada}, true},
    
    		// no direct match, deeper path ignored
    		{"bar.example.com/ping", []AuthConfig{ada}, true},
    
    		// match first part of path token
    		{"bar.example.com/pongz", []AuthConfig{grace, ada}, true},
    
    		// match regardless of sub-path
    		{"bar.example.com/pong/pang", []AuthConfig{grace, ada}, true},
    
    		// no host match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 15 10:47:22 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/a.out.go

    	// Condition code, EQ, NE, etc. Their relative order to EQ is matter.
    	SPOP_EQ
    	SPOP_NE
    	SPOP_HS
    	SPOP_LO
    	SPOP_MI
    	SPOP_PL
    	SPOP_VS
    	SPOP_VC
    	SPOP_HI
    	SPOP_LS
    	SPOP_GE
    	SPOP_LT
    	SPOP_GT
    	SPOP_LE
    	SPOP_AL
    	SPOP_NV
    	// Condition code end.
    
    	SPOP_END
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
Back to top