Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 569 for Listeners (0.14 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

      @Synchronized fun receivedPongCount(): Int = receivedPongCount
    
      @Throws(IOException::class)
      override fun onReadMessage(text: String) {
        listener.onMessage(this, text)
      }
    
      @Throws(IOException::class)
      override fun onReadMessage(bytes: ByteString) {
        listener.onMessage(this, bytes)
      }
    
      @Synchronized override fun onReadPing(payload: ByteString) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. cmd/server-main.go

    		Value:  ":" + GlobalMinioDefaultPort,
    		Usage:  "bind to a specific ADDRESS:PORT, ADDRESS can be an IP or hostname",
    		EnvVar: "MINIO_ADDRESS",
    	},
    	cli.IntFlag{
    		Name:   "listeners", // Deprecated Oct 2022
    		Value:  1,
    		Usage:  "bind N number of listeners per ADDRESS:PORT",
    		EnvVar: "MINIO_LISTENERS",
    		Hidden: true,
    	},
    	cli.StringFlag{
    		Name:   "console-address",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  3. istioctl/pkg/waypoint/waypoint.go

    			},
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      waypointName,
    				Namespace: ns,
    			},
    			Spec: gateway.GatewaySpec{
    				GatewayClassName: constants.WaypointGatewayClassName,
    				Listeners: []gateway.Listener{{
    					Name:     "mesh",
    					Port:     15008,
    					Protocol: gateway.ProtocolType(protocol.HBONE),
    				}},
    			},
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:33 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/xds/server.go

    	// ACK, it will be responded to. This typically happens when a proxy reconnects to another instance of
    	// Istiod. In that case, Envoy expects us to respond to EDS/RDS/SDS requests to finish warming of
    	// clusters/listeners.
    	// Typically, this should be set to 'false' after response; keeping it true would likely result in an endless loop.
    	AlwaysRespond bool
    
    	// LastResources tracks the contents of the last push.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    			configsUpdated.Insert(model.ConfigKey{Kind: kind.DNSName, Name: config.Name, Namespace: config.Namespace})
    		}
    	}
    
    	if len(configsUpdated) > 0 {
    		// For headless services, trigger a full push.
    		// If EnableHeadlessService is true and svc ports are not pure HTTP, we need to regenerate listeners per endpoint.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

                    void afterEvaluate(Project project, ProjectState projectState) {
                        println project.buildDir
                    }
                }
                def listener = new MyListener()
                gradle.$add(listener)
                gradle.$remove(listener)
            """
    
            when:
            isolatedProjectsRun(":a:help", ":b:help")
    
            then:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    		for index, egress := range rule.Egress {
    			if egress == nil {
    				errs = AppendValidation(errs, errors.New("egress listener may not be null"))
    				continue
    			}
    			// there can be only one catch all egress listener with empty port, and it should be the last listener.
    			if egress.Port == nil {
    				if !catchAllEgressListenerFound {
    					if index == len(rule.Egress)-1 {
    						catchAllEgressListenerFound = true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            SharedResourceLeaseRegistry sharedResourceLeaseRegistry,
            FeatureFlags featureFlags
        ) {
            // TODO:configuration-cache remove this hack
            // HACK: force the instantiation of FlowScope so its listeners are registered before DefaultBuildServicesRegistry's
            services.find(FlowScope.class);
    
            // Instantiate via `instantiator` for the DSL decorations to the `BuildServiceRegistry` API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    	},
    	{
    		Name:     "tls",
    		Services: 100,
    		SkipType: v3.RouteType, // no routes for tls
    	},
    	{
    		Name:     "auto",
    		Services: 100,
    	},
    
    	// Test different TLS modes. This only impacts listeners
    	{
    		Name:        "strict",
    		OnlyRunType: v3.ListenerType,
    	},
    	{
    		Name:        "disabled",
    		OnlyRunType: v3.ListenerType,
    	},
    
    	{
    		Name:     "externalname",
    		Services: 100,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. architecture/ambient/ztunnel.md

    However, while we chose to use the xDS *transport protocol*, we chose to not use the xDS resource types, such as Clusters and Listeners.
    In our experience and testing, these types force us to represent data in inefficient ways because they are general purpose.
    Ztunnel is not general purpose; it has an extremely tight goal.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top