Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,286 for GetWork (0.13 sec)

  1. pilot/pkg/config/kube/gateway/testdata/deployment/waypoint-no-network-label.yaml

    metadata:
      annotations: {}
      labels:
        gateway.istio.io/managed: istio.io-mesh-controller
        gateway.networking.k8s.io/gateway-name: namespace
        istio.io/gateway-name: namespace
        topology.istio.io/network: network-1
      name: namespace
      namespace: default
      ownerReferences:
      - apiVersion: gateway.networking.k8s.io/v1beta1
        kind: Gateway
        name: namespace
        uid: ""
    ---
    apiVersion: apps/v1
    kind: Deployment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 22:41:03 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	if networkReady == nil || !networkReady.Status {
    		klogErrorS(nil, "Container runtime network not ready", "networkReady", networkReady)
    		kl.runtimeState.setNetworkState(fmt.Errorf("container runtime network not ready: %v", networkReady))
    	} else {
    		// Set nil if the container runtime network is ready.
    		kl.runtimeState.setNetworkState(nil)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cmd/metrics-v3-system-network.go

    	internodeRecvBytesTotalMD = NewCounterMD(internodeRecvBytesTotal,
    		"Total number of bytes received from other peer nodes")
    )
    
    // loadNetworkInternodeMetrics - reads internode network metrics.
    //
    // This is a `MetricsLoaderFn`.
    func loadNetworkInternodeMetrics(ctx context.Context, m MetricValues, _ *metricsCache) error {
    	connStats := globalConnStats.toServerConnStats()
    	rpcStats := rest.GetRPCStats()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/network-attachment-definition.yaml

    Ben Leggett <******@****.***> 1715982749 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 231 bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java

      public void validateUndirectedEdges() {
        for (Integer node : network.nodes()) {
          new EqualsTester()
              .addEqualityGroup(
                  network.inEdges(node), network.outEdges(node), network.incidentEdges(node))
              .testEquals();
          new EqualsTester()
              .addEqualityGroup(
                  network.predecessors(node), network.successors(node), network.adjacentNodes(node))
              .testEquals();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  6. src/net/net_test.go

    	}
    	t.Parallel()
    
    	for _, network := range []string{"tcp", "unix", "unixpacket"} {
    		network := network
    		t.Run(network, func(t *testing.T) {
    			if !testableNetwork(network) {
    				t.Skipf("network %s is not testable on the current platform", network)
    			}
    			t.Parallel()
    
    			ln := newLocalListener(t, network)
    			switch network {
    			case "unix", "unixpacket":
    				defer os.Remove(ln.Addr().String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/net/conn_test.go

    				t.Fatal(err)
    			}
    			if ls.Listener.Addr().Network() != network {
    				t.Fatalf("got %s; want %s", ls.Listener.Addr().Network(), network)
    			}
    
    			c, err := Dial(ls.Listener.Addr().Network(), ls.Listener.Addr().String())
    			if err != nil {
    				t.Fatal(err)
    			}
    			defer c.Close()
    			if c.LocalAddr().Network() != network || c.RemoteAddr().Network() != network {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/proxy_view_test.go

    	"istio.io/istio/pkg/network"
    )
    
    func TestProxyView(t *testing.T) {
    	cases := []struct {
    		name        string
    		networkView []string
    		network     string
    		visible     bool
    	}{
    		{
    			name:    "no views",
    			network: "network1",
    			visible: true,
    		},
    		{
    			name:        "network visible",
    			networkView: []string{"network1"},
    			network:     "network1",
    			visible:     true,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/ep_filters.go

    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/network"
    )
    
    // EndpointsByNetworkFilter is a network filter function to support Split Horizon EDS - filter the endpoints based on the network
    // of the connected sidecar. The filter will filter out all endpoints which are not present within the
    // sidecar network and add a gateway endpoint to remote networks that have endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. pkg/wellknown/wellknown.go

    	// MongoProxy network filter
    	MongoProxy = "envoy.filters.network.mongo_proxy"
    	// ThriftProxy network filter
    	ThriftProxy = "envoy.filters.network.thrift_proxy"
    	// RedisProxy network filter
    	RedisProxy = "envoy.filters.network.redis_proxy"
    	// MySQLProxy network filter
    	MySQLProxy = "envoy.filters.network.mysql_proxy"
    	// ExternalAuthorization network filter
    	ExternalAuthorization = "envoy.filters.network.ext_authz"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 15:29:30 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top