Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 571 for listener2 (0.24 sec)

  1. android/guava/src/com/google/common/util/concurrent/ExecutionList.java

     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    		),
    	}
    	if err := ret.loadCABundle(); err != nil {
    		return nil, err
    	}
    
    	return ret, nil
    }
    
    // AddListener adds a listener to be notified when the CA content changes.
    func (c *DynamicFileCAContent) AddListener(listener Listener) {
    	c.listeners = append(c.listeners, listener)
    }
    
    // loadCABundle determines the next set of content for the file.
    func (c *DynamicFileCAContent) loadCABundle() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListeners.java

     * Allows the registration of {@link WorkInputListener work input listeners}.
     */
    @ServiceScope(Global.class)
    public interface WorkInputListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(WorkInputListener)}.
         */
        void addListener(WorkInputListener listener);
    
        void removeListener(WorkInputListener listener);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/FileChangeListeners.java

    /**
     * Allows the registration of {@link FileChangeListener}s.
     *
     * We can't use listener manager directly, since the listeners will be created in
     * child scopes of the user home scope.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface FileChangeListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(FileChangeListener)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ExecutionList.java

     * instance contains a list of listeners, each with an associated {@code Executor}, and guarantees
     * that every {@code Runnable} that is {@linkplain #add added} will be executed after {@link
     * #execute()} is called. Any {@code Runnable} added after the call to {@code execute} is still
     * guaranteed to execute. There is no guarantee, however, that listeners will be executed in the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 21:17:24 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	return c.configmapNamespace + "/" + c.configmapName
    }
    
    // AddListener adds a listener to be notified when the CA content changes.
    func (c *ConfigMapCAController) AddListener(listener Listener) {
    	c.listeners = append(c.listeners, listener)
    }
    
    // loadCABundle determines the next set of content for the file.
    func (c *ConfigMapCAController) loadCABundle() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conditions.go

    		gs := s.(*k8s.GatewayStatus)
    		for index >= len(gs.Listeners) {
    			gs.Listeners = append(gs.Listeners, k8s.ListenerStatus{})
    		}
    		status := gs.Listeners[index]
    		status.AttachedRoutes = i
    		gs.Listeners[index] = status
    		return gs
    	})
    }
    
    func reportListenerCondition(index int, l k8s.Listener, obj config.Config, conditions map[string]*condition) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. pkg/envoy/agent.go

    			continue
    		}
    		// downstream_cx_active is accounted under "http." and "listener." for http listeners.
    		// Only consider listener stats. Listener stats also will have per worker stats, we can
    		// ignore them.
    		if !strings.HasPrefix(parts[0], "listener.") || strings.Contains(parts[0], "worker_") {
    			continue
    		}
    		// If the stat is for a known Istio listener skip it.
    		if a.knownIstioListeners.Contains(parts[0]) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/OutputEventRenderer.java

                }
            }
        }
    
        private void addChain(OutputEventListener listener) {
            listener.onOutput(new LogLevelChangeEvent(logLevel.get()));
            formatters.add(listener);
        }
    
        private void removeChain(OutputEventListener listener) {
            formatters.remove(listener);
            listener.onOutput(new EndOutputEvent());
        }
    
        public ColorMap getColourMap() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/gateway-api-crd.yaml

                    type: object
                  listeners:
                    description: |-
                      Listeners associated with this Gateway. Listeners define
                      logical endpoints that are bound on this Gateway's addresses.
                      At least one Listener MUST be specified.
    
    
                      Each Listener in a set of Listeners (for example, in a single Gateway)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
Back to top