Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,252 for Listeners (0.18 sec)

  1. android/guava/src/com/google/common/eventbus/EventBus.java

    import java.util.Iterator;
    import java.util.Locale;
    import java.util.concurrent.Executor;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    
    /**
     * Dispatches events to listeners, and provides ways for listeners to register themselves.
     *
     * <h2>Avoid EventBus</h2>
     *
     * <p><b>We recommend against using EventBus.</b> It was designed many years ago, and newer
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 25 16:37:57 UTC 2021
    - 12.8K bytes
    - Viewed (0)
  2. proguard/concurrent.pro

    # Used by AtomicReferenceFieldUpdater and sun.misc.Unsafe
    -keepclassmembers class com.google.common.util.concurrent.AbstractFuture** {
      *** waiters;
      *** value;
      *** listeners;
      *** thread;
      *** next;
    }
    -keepclassmembers class com.google.common.util.concurrent.AtomicDouble {
      *** value;
    }
    -keepclassmembers class com.google.common.util.concurrent.AggregateFutureState {
      *** remaining;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. subprojects/build-events/src/main/java/org/gradle/internal/build/event/OperationResultPostProcessorFactory.java

    @ServiceScope(Scope.Global.class)
    public interface OperationResultPostProcessorFactory {
        /**
         * Creates the post processors relevant for the given subscriptions. The processors are also registered as listeners.
         */
        List<OperationResultPostProcessor> createProcessors(BuildEventSubscriptions subscriptions, BuildEventConsumer consumer);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listenertest/match.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    type ListenersTest struct {
    	// Match listener by name
    	Name string
    	// Match listener by port
    	Port uint32
    
    	// Listener assertions
    	Listener ListenerTest
    }
    
    // ListenerTest provides a struct for defining expectations for a listener
    type ListenerTest struct {
    	// Assert the listener contains these filter chains (in order, if TotalMatch)
    	FilterChains []FilterChainTest
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/grpc.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: GRPCRoute
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/zero.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: gateway
      namespace: istio-system
    spec:
      addresses:
      - value: istio-ingressgateway
        type: Hostname
      gatewayClassName: istio
      listeners:
      - name: default
        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
      - name: tcp
        port: 34000
        protocol: TCP
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

    @Suppress("UnstableApiUsage")
    @KaAnalysisNonPublicApi
    object PluginStructureProvider {
        /**
         * This fake plugin is required to provide it as a required parameter.
         * Effectively, it is only used to group project listeners.
         */
        private val fakePluginDescriptor = DefaultPluginDescriptor("analysis-api-standalone-base-loader")
    
        private object ReadContext : ReadModuleContext {
            override val interner get() = NoOpXmlInterner
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/SourceDependencyBuildOperationIntegrationTest.groovy

            graphNotifyOps.size() == 2
            graphNotifyOps[0].displayName == "Notify task graph whenReady listeners (:${buildName})"
            graphNotifyOps[0].details.buildPath == ":${buildName}"
            graphNotifyOps[0].parentId == treeGraphOps[0].id
            graphNotifyOps[1].displayName == 'Notify task graph whenReady listeners'
            graphNotifyOps[1].details.buildPath == ':'
            graphNotifyOps[1].parentId == treeGraphOps[0].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/interfaces.go

    */
    
    package dynamiccertificates
    
    import (
    	"crypto/x509"
    )
    
    // Listener is an interface to use to notify interested parties of a change.
    type Listener interface {
    	// Enqueue should be called when an input may have changed
    	Enqueue()
    }
    
    // Notifier is a way to add listeners
    type Notifier interface {
    	// AddListener is adds a listener to be notified of potential input changes.
    	// This is a noop on static providers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 18:29:15 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcBuildOperationsIntegrationTest.groovy

            graphNotifyOps.size() == 2
            graphNotifyOps[0].displayName == 'Notify task graph whenReady listeners (:buildSrc)'
            graphNotifyOps[0].details.buildPath == ':buildSrc'
            graphNotifyOps[0].parentId == treeTaskGraphOps[0].id
            graphNotifyOps[1].displayName == "Notify task graph whenReady listeners"
            graphNotifyOps[1].details.buildPath == ":"
            graphNotifyOps[1].parentId == treeTaskGraphOps[1].id
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top