- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for Outbound (0.1 sec)
-
istioctl/pkg/describe/testdata/describe/http_config.json
"name": "outbound|9080|v1|productpage.default.svc.cluster.local", "type": "EDS", "eds_cluster_config": { "eds_config": { "ads": {}, "initial_fetch_timeout": "0s", "resource_api_version": "V3" }, "service_name": "outbound|9080|v1|productpage.default.svc.cluster.local" },
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 13.7K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.json
} ] } ], "policy": { "overprovisioningFactor": 140 } }, { "clusterName": "outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local", "endpoints": [ { "locality": {}, "lbEndpoints": [ {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 12 02:25:59 UTC 2022 - 40.4K bytes - Viewed (0) -
istioctl/pkg/writer/envoy/configdump/testdata/endpoint/emptyfilter_output.yaml
portValue: 15020 healthCheckConfig: {} healthStatus: HEALTHY loadBalancingWeight: 1 locality: {} policy: overprovisioningFactor: 140 - clusterName: outbound|9402||cert-manager-istio-csr-metrics.cert-manager.svc.cluster.local endpoints: - lbEndpoints: - endpoint: address: socketAddress: address: 10.244.0.156
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Jul 12 02:25:59 UTC 2022 - 17.1K bytes - Viewed (0) -
architecture/ambient/ztunnel.md
## Traffic routing Based on the three [redirection](#redirection) paths, the ztunnel has three primary types of traffic it handles. ### Outbound Requests leaving a pod go through the "outbound" code path on port 15001. This is where most of Ztunnel's logic lives. For outbound traffic, we need to first determine where the traffic is destined to.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Jul 17 23:10:17 UTC 2024 - 16.8K bytes - Viewed (0) -
cni/pkg/iptables/iptables.go
) } // CLI: -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff // // DESC: Propagate/restore connmark (if we had one) for outbound iptablesBuilder.AppendRule( iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.MANGLE, "-m", "connmark", "--mark", inpodTproxyMark, "-j", "CONNMARK", "--restore-mark",
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Oct 15 15:39:28 UTC 2024 - 23.3K bytes - Viewed (0) -
docs/changelogs/changelog_4x.md
point were invalid certificates accepted. * New: `OkHttpClient.Builder.minWebSocketMessageToCompress()` configures a threshold for compressing outbound web socket messages. Configure this with 0L to always compress outbound messages and `Long.MAX_VALUE` to never compress outbound messages. The default is 1024L which compresses messages of size 1 KiB and larger. (Inbound messages are compressed or not based on
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Apr 17 13:25:31 UTC 2024 - 25.2K bytes - Viewed (0) -
cmd/metrics.go
"Total number of internode bytes received by current MinIO server instance", nil, nil), prometheus.CounterValue, float64(connStats.internodeInputBytes), ) // Network Sent/Received Bytes (Outbound) ch <- prometheus.MustNewConstMetric( prometheus.NewDesc( prometheus.BuildFQName(s3Namespace, "tx", "bytes_total"), "Total number of s3 bytes sent by current MinIO server instance", nil, nil),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 16.6K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt
* servers it should be the agreed-upon extensions immediately. */ private var extensions: WebSocketExtensions?, /** If compression is negotiated, outbound messages of this size and larger will be compressed. */ private var minimumDeflateSize: Long, private val webSocketCloseTimeout: Long, ) : WebSocket, WebSocketReader.FrameCallback { private val key: String
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 01 14:21:25 UTC 2024 - 22.1K bytes - Viewed (0) -
istioctl/pkg/ztunnelconfig/ztunnelconfig.go
} }), ValidArgsFunction: completion.ValidPodsNameArgs(ctx), } common.attach(cmd) cmd.PersistentFlags().StringVar(&direction, "direction", "", "Filter workloads by direction (inbound or outbound)") cmd.PersistentFlags().BoolVar(&raw, "raw", false, "If set, show IP addresses instead of names") cmd.PersistentFlags().StringVar(&workloadsNamespace, "workload-namespace", "", "Filter workloads by namespace field")
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Wed Oct 09 19:17:45 UTC 2024 - 22.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/GeneralRange.java
boolean tooHigh(@ParametricNullness T t) { if (!hasUpperBound()) { return false; } // The cast is safe because of the hasUpperBound() check. T ubound = uncheckedCastNullableTToT(getUpperEndpoint()); int cmp = comparator.compare(t, ubound); return cmp > 0 | (cmp == 0 & getUpperBoundType() == OPEN); } boolean contains(@ParametricNullness T t) { return !tooLow(t) && !tooHigh(t); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 21:19:52 UTC 2024 - 10.8K bytes - Viewed (0)