Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for ack (0.02 sec)

  1. pkg/xds/server.go

    	// even though Nonce match and it looks like an ACK.
    	if alwaysRespond {
    		log.Infof("ADS:%s: FORCE RESPONSE %s for warming.", stype, id)
    		return true, emptyResourceDelta
    	}
    
    	if len(removed) == 0 && len(added) == 0 {
    		log.Debugf("ADS:%s: ACK %s %s %s", stype, id, request.VersionInfo, request.ResponseNonce)
    		return false, emptyResourceDelta
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. docs/contribute/debug_logging.md

    [2020-01-01 00:00:00] >> 0x00000003    47 HEADERS       END_STREAM|END_HEADERS
    [2020-01-01 00:00:00] << 0x00000000     6 SETTINGS
    [2020-01-01 00:00:00] << 0x00000000     0 SETTINGS      ACK
    [2020-01-01 00:00:00] << 0x00000000     4 WINDOW_UPDATE
    [2020-01-01 00:00:00] >> 0x00000000     0 SETTINGS      ACK
    [2020-01-01 00:00:00] << 0x00000003   322 HEADERS       END_HEADERS
    [2020-01-01 00:00:00] << 0x00000003   288 DATA
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. internal/grid/muxserver.go

    	}
    	// Acknowledge Mux created.
    	// Send async.
    	var wg sync.WaitGroup
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		var ack message
    		ack.Op = OpAckMux
    		ack.Flags = m.BaseFlags
    		ack.MuxID = m.ID
    		m.send(ack)
    		if debugPrint {
    			fmt.Println("connected stream mux:", ack.MuxID)
    		}
    	}()
    
    	// Data inbound to the handler
    	var handlerIn chan []byte
    	if inboundCap > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. pkg/kube/krt/internal.go

    	if ok {
    		return Key[O](keyFunc(ac.Name, ac.Namespace)), true
    	}
    	arn, ok := any(a).(ResourceNamer)
    	if ok {
    		return Key[O](arn.ResourceName()), true
    	}
    	ack := GetApplyConfigKey(a)
    	if ack != nil {
    		return *ack, true
    	}
    	return "", false
    }
    
    // getLabels returns the labels for an object, if possible.
    // Warning: this will panic if the labels is not available.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

          }
          sink.flush()
        }
      }
    
      /**
       * Send a connection-level ping to the peer. `ack` indicates this is a reply. The data in
       * `payload1` and `payload2` opaque binary, and there are no rules on the content.
       */
      @Throws(IOException::class)
      fun ping(
        ack: Boolean,
        payload1: Int,
        payload2: Int,
      ) {
        this.withLock {
          if (closed) throw IOException("closed")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    		xds.ExpiredNonce.With(typeTag.Value(v3.GetMetricType(request.TypeUrl))).Increment()
    		return false
    	}
    	// If it comes here, that means nonce match. This an ACK. We should record
    	// the ack details and respond if there is a change in resource names.
    	var previousResources, currentResources []string
    	var alwaysRespond bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. pkg/istio-agent/xds_proxy_delta_test.go

    		},
    	})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Wait until nonce was updated, which represents an ACK/NACK has been received.
    	retry.UntilSuccessOrFail(t, func() error {
    		if proxy.ecdsLastNonce.Load() == n1.Load() {
    			return errors.New("last process nonce has not been updated. no ecds ack/nack is received yet")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/OplockTests.java

                    try {
                        tree.send(create2);
                    }
                    catch ( Exception e ) {
                        // timeout is expected for now as we do not ack the break
                        if ( ! ( e.getCause() instanceof RequestTimeoutException ) ) {
                            throw e;
                        }
                    }
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. pkg/istio-agent/xds_proxy_test.go

    	// Wait until nonce was updated, which represents an ACK/NACK has been received.
    	retry.UntilSuccessOrFail(t, func() error {
    		if proxy.ecdsLastNonce.Load() == n1.Load() {
    			return errors.New("last process nonce has not been updated. no ecds ack/nack is received yet")
    		}
    		return nil
    	}, retry.Timeout(time.Second), retry.Delay(time.Millisecond))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 04:48:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eventhandler.go

    // EventHandler allows for generic monitoring of xDS ACKS and disconnects, for the purpose of tracking
    // Config distribution through the mesh.
    type DistributionStatusCache interface {
    	// RegisterEvent notifies the implementer of an xDS ACK, and must be non-blocking
    	RegisterEvent(conID string, eventType EventType, nonce string)
    	RegisterDisconnect(s string, types sets.Set[EventType])
    	QueryLastNonce(conID string, eventType EventType) (noncePrefix string)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top