Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Listeners (0.2 sec)

  1. pilot/pkg/networking/core/listener.go

    		l := buildListenerFromEntry(lb, le, fallthroughNetworkFilters)
    		listeners = append(listeners, l)
    	}
    	return listeners
    }
    
    func buildListenerFromEntry(builder *ListenerBuilder, le *outboundListenerEntry, fallthroughNetworkFilters []*listener.Filter) *listener.Listener {
    	l := &listener.Listener{
    		// TODO: need to sanitize the opts.bind if its a UDS socket, as it could have colons, that envoy doesn't like
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_test.go

    		p.DiscoverIPMode()
    		listeners := buildOutboundListeners(t, p, nil, nil, services...)
    		if len(listeners) != 1 {
    			t.Fatalf("expected %d listeners, found %d", 1, len(listeners))
    		}
    		if p.IsDualStack() {
    			if len(listeners[0].AdditionalAddresses) != 1 {
    				t.Fatalf("expected %d additional addresses, found %d", 1, len(listeners[0].AdditionalAddresses))
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (!isDone()) {
          Listener oldHead = listeners;
          if (oldHead != Listener.TOMBSTONE) {
            Listener newNode = new Listener(listener, executor);
            do {
              newNode.next = oldHead;
              if (ATOMIC_HELPER.casListeners(this, oldHead, newNode)) {
                return;
              }
              oldHead = listeners; // re-read
            } while (oldHead != Listener.TOMBSTONE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        if (!isDone()) {
          Listener oldHead = listeners;
          if (oldHead != Listener.TOMBSTONE) {
            Listener newNode = new Listener(listener, executor);
            do {
              newNode.next = oldHead;
              if (ATOMIC_HELPER.casListeners(this, oldHead, newNode)) {
                return;
              }
              oldHead = listeners; // re-read
            } while (oldHead != Listener.TOMBSTONE);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

            testProgressListeners.addAll(getOrDefault(listeners, OperationType.TEST));
            taskProgressListeners.addAll(getOrDefault(listeners, OperationType.TASK));
            buildOperationProgressListeners.addAll(getOrDefault(listeners, OperationType.GENERIC));
            workItemProgressListeners.addAll(getOrDefault(listeners, OperationType.WORK_ITEM));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    		push         *model.PushContext
    		listeners    []*listener.Listener
    		skipAdds     bool
    	}
    	tests := []struct {
    		name string
    		args args
    		want []*listener.Listener
    	}{
    		{
    			name: "gateway lds",
    			args: args{
    				patchContext: networking.EnvoyFilter_GATEWAY,
    				proxy:        gatewayProxy,
    				push:         push,
    				listeners:    gatewayIn,
    				skipAdds:     false,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    				})
    			}
    		}
    		// Prune listeners that have been removed
    		haveListeners := getListenerNames(obj)
    		listeners := make([]k8s.ListenerStatus, 0, len(gs.Listeners))
    		for _, l := range gs.Listeners {
    			if haveListeners.Contains(l.Name) {
    				haveListeners.Delete(l.Name)
    				listeners = append(listeners, l)
    			}
    		}
    		gs.Listeners = listeners
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pilot/pkg/model/push_context.go

    	// TCP listeners that conflicted with existing TCP listeners on same port
    	ProxyStatusConflictOutboundListenerTCPOverTCP = monitoring.NewGauge(
    		"pilot_conflict_outbound_listener_tcp_over_current_tcp",
    		"Number of conflicting tcp listeners with current tcp listener.",
    	)
    
    	// ProxyStatusConflictInboundListener tracks cases of multiple inbound
    	// listeners - 2 services selecting the same port of the pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Removes the given event listener from the list and returns it.  It then
      // becomes the caller's responsibility to delete the listener. Returns
      // NULL if the listener is not found in the list.
      TestEventListener* Release(TestEventListener* listener);
    
      // Returns the standard listener responsible for the default console
      // output.  Can be removed from the listeners list to shut down default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Removes the given event listener from the list and returns it.  It then
      // becomes the caller's responsibility to delete the listener. Returns
      // NULL if the listener is not found in the list.
      TestEventListener* Release(TestEventListener* listener);
    
      // Returns the standard listener responsible for the default console
      // output.  Can be removed from the listeners list to shut down default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top