Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 656 for Listeners (0.3 sec)

  1. pkg/adsc/adsc.go

    		switch msg.TypeUrl {
    		case v3.ListenerType:
    			listeners := make([]*listener.Listener, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				ll := &listener.Listener{}
    				_ = proto.Unmarshal(valBytes, ll)
    				listeners = append(listeners, ll)
    			}
    			a.handleLDS(listeners)
    		case v3.ClusterType:
    			clusters := make([]*cluster.Cluster, 0, len(msg.Resources))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive current task progress event even if one of multiple task listeners throws an exception"() {
            given:
            goodCode()
    
            when: "launching a build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K 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. 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)
  6. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

         * @see org.gradle.api.invocation.GradleLifecycle#afterProject(IsolatedAction)
         */
        void afterProject(IsolatedAction<? super Project> action);
    
        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. tests/fuzz/xds_fuzzer.go

    	if err != nil {
    		return 0
    	}
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{
    		ConfigString: string(data),
    	})
    	proxy := s.SetupProxy(&model.Proxy{
    		ConfigNamespace: "app",
    	})
    	_ = s.Listeners(proxy)
    	_ = s.Routes(proxy)
    	return 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    						gatewayNameOverride:                "default",
    					},
    				},
    				Spec: k8s.GatewaySpec{
    					GatewayClassName: k8s.ObjectName(features.GatewayAPIDefaultGatewayClass),
    					Listeners: []k8s.Listener{{
    						Name:     "http",
    						Port:     k8s.PortNumber(80),
    						Protocol: k8s.HTTPProtocolType,
    					}},
    				},
    			},
    			objects:                  defaultObjects,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top