Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for ack (0.11 sec)

  1. releasenotes/notes/double-ack.yaml

    John Howard <******@****.***> 1656720476 +0000
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 02 00:07:56 UTC 2022
    - 219 bytes
    - Viewed (0)
  2. pkg/zdsapi/zds.proto

    message SnapshotSent {
    }
    
    // Ztunnel ack message. If error is not empty, this is an error message.
    message Ack {
      string error = 1;
    }
    
    /*
    Protocol details:
    on new connection from ztunnel to CNI, the CNI agent
    - will send all the existing payloads (that it has in its cache) to the ztunnel using AddWorkload message.
    - the ztunnel will send an ack for each payload (which the CNI will wait for before sending the next one).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer.acceptFrame() // HEADERS
        peer.play()
        val connection = connect(peer)
    
        // Verify the peer received the second ACK.
        val ackFrame = peer.takeFrame()
        assertThat(ackFrame.type).isEqualTo(Http2.TYPE_SETTINGS)
        assertThat(ackFrame.streamId).isEqualTo(0)
        assertThat(ackFrame.ack).isTrue()
    
        // This stream was created *after* the connection settings were adjusted.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/ztunnelserver_test.go

    }
    
    func sendAck(c *net.UnixConn) {
    	ack := &zdsapi.WorkloadResponse{
    		Payload: &zdsapi.WorkloadResponse_Ack{
    			Ack: &zdsapi.Ack{},
    		},
    	}
    	data, err := proto.Marshal(ack)
    	if err != nil {
    		panic(err)
    	}
    	err = c.SetWriteDeadline(time.Now().Add(time.Second))
    	if err != nil {
    		panic(err)
    	}
    	c.Write(data)
    }
    
    func sendHello(c *net.UnixConn) {
    	ack := &zdsapi.ZdsHello{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/http2/FrameLogTest.kt

          .isEqualTo("<< 0x00000000    15 SETTINGS      ")
        assertThat(frameLog(false, 0, 0, TYPE_SETTINGS, FLAG_ACK))
          .isEqualTo(">> 0x00000000     0 SETTINGS      ACK")
        assertThat(frameLog(true, 0, 0, TYPE_SETTINGS, FLAG_ACK))
          .isEqualTo("<< 0x00000000     0 SETTINGS      ACK")
        assertThat(frameLog(true, 3, 22, TYPE_HEADERS, FLAG_END_HEADERS))
          .isEqualTo("<< 0x00000003    22 HEADERS       END_HEADERS")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pkg/zdsapi/zds.pb.go

    	}
    	return nil
    }
    
    func (x *WorkloadResponse) GetAck() *Ack {
    	if x, ok := x.GetPayload().(*WorkloadResponse_Ack); ok {
    		return x.Ack
    	}
    	return nil
    }
    
    type isWorkloadResponse_Payload interface {
    	isWorkloadResponse_Payload()
    }
    
    type WorkloadResponse_Ack struct {
    	Ack *Ack `protobuf:"bytes,1,opt,name=ack,proto3,oneof"`
    }
    
    func (*WorkloadResponse_Ack) isWorkloadResponse_Payload() {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/http2/MockHttp2Peer.kt

          this.streamId = streamId
          this.errorCode = errorCode
        }
    
        override fun ping(
          ack: Boolean,
          payload1: Int,
          payload2: Int,
        ) {
          check(type == -1)
          type = Http2.TYPE_PING
          this.ack = ack
          this.payload1 = payload1
          this.payload2 = payload2
        }
    
        override fun goAway(
          lastGoodStreamId: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/TestKitIntegrationTest.kt

                        project.extensions.create("test", TestExtension::class)
                    }
                }
    
                open class TestExtension {
                    fun ack() = println("Ack!")
                }
                """
            )
    
            withFile(
                "src/test/kotlin/plugin/TestPluginTest.kt",
                """
    
                package plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 10:30:09 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/ztunnelserver.go

    				log.Errorf("failed to handle conn: %v", err)
    			}
    		}()
    	}
    }
    
    // ZDS protocol is very simple, for every message sent, and ack is sent.
    // the ack only has temporal correlation (i.e. it is the first and only ack msg after the message was sent)
    // All this to say, that we want to make sure that message to ztunnel are sent from a single goroutine
    // so we don't mix messages and acks.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/xds/server_test.go

    			response: true,
    		},
    		{
    			name: "ack",
    			proxy: &TestProxy{
    				WatchedResources: map[string]*WatchedResource{
    					model.ClusterType: {
    						NonceSent: "nonce",
    					},
    				},
    			},
    			request: &discovery.DiscoveryRequest{
    				TypeUrl:       model.ClusterType,
    				VersionInfo:   "v1",
    				ResponseNonce: "nonce",
    			},
    			response: false,
    		},
    		{
    			name: "ack forced",
    			proxy: &TestProxy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top