Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Encap (0.04 sec)

  1. istioctl/pkg/proxyconfig/testdata/config_dump_summary.txt

    listener/main_internal           0     ALL   Cluster: inbound-vip|8000|http|httpbin.default.svc.cluster.local
    listener/main_internal           0     ALL   Cluster: encap
    listener/main_internal           0     ALL   Cluster: encap
    listener/              0.0.0.0   15021 ALL   Inline Route: /healthz/ready*
    
    NAME                                                              VHOST NAME            DOMAINS     MATCH     VIRTUAL SERVICE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/crypto/internal/hpke/hpke_test.go

    			encap, context, err := SetupSender(
    				uint16(kemID),
    				uint16(kdfID),
    				uint16(aeadID),
    				pub,
    				info,
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			expectedEncap := mustDecodeHex(t, setup["enc"])
    			if !bytes.Equal(encap, expectedEncap) {
    				t.Errorf("unexpected encapsulated key, got: %x, want %x", encap, expectedEncap)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_waypoint.go

    	// Creates "main_internal" cluster to route to the main internal listener.
    	// Creates "encap" cluster to route to the encap listener.
    	clusters = append(clusters, MainInternalCluster, EncapCluster)
    	// Creates per-VIP load balancing upstreams.
    	clusters = append(clusters, cb.buildWaypointInboundVIP(proxy, svcs)...)
    	// Upstream of the "encap" listener.
    	clusters = append(clusters, cb.buildWaypointConnectOriginate(proxy, push))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/testdata/config_dump.json

                          "typed_config": {
                            "@type": "type.googleapis.com/envoy.extensions.filters.network.tcp_proxy.v3.TcpProxy",
                            "stat_prefix": "encap",
                            "cluster": "encap"
                          }
                        }
                      ],
                      "name": "direct-tcp"
                    },
                    {
                      "filters": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  5. src/crypto/internal/hpke/hpke.go

    	eaePRK := dh.kdf.LabeledExtract(dh.suiteID[:], nil, "eae_prk", dhKey)
    	return dh.kdf.LabeledExpand(dh.suiteID[:], eaePRK, "shared_secret", kemContext, dh.nSecret)
    }
    
    func (dh *dhKEM) Encap(pubRecipient *ecdh.PublicKey) (sharedSecret []byte, encapPub []byte, err error) {
    	var privEph *ecdh.PrivateKey
    	if testingOnlyGenerateKey != nil {
    		privEph, err = testingOnlyGenerateKey()
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:33 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/waypoint.go

    	ConnectOriginate = "connect_originate"
    
    	// EncapClusterName is the name of the cluster used for traffic to the connect_originate listener.
    	EncapClusterName = "encap"
    
    	// ConnectUpgradeType is the type of upgrade for HTTP CONNECT.
    	ConnectUpgradeType = "CONNECT"
    )
    
    type waypointServices struct {
    	services        map[host.Name]*model.Service
    	orderedServices []*model.Service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener_waypoint.go

    				xdsfilters.ConnectAuthorityNetworkFilter,
    			},
    				lb.buildInboundNetworkFilters(cc)...),
    			Name: "direct-tcp",
    		}
    		// TODO: maintains undesirable persistent HTTP connections to "encap"
    		httpChain := &listener.FilterChain{
    			Filters: append([]*listener.Filter{
    				xdsfilters.ConnectAuthorityNetworkFilter,
    			},
    				lb.buildWaypointInboundHTTPFilters(nil, cc)...),
    			Name: "direct-http",
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/regexp/exec.go

    func (re *Regexp) doOnePass(ir io.RuneReader, ib []byte, is string, pos, ncap int, dstCap []int) []int {
    	startCond := re.cond
    	if startCond == ^syntax.EmptyOp(0) { // impossible
    		return nil
    	}
    
    	m := newOnePassMachine()
    	if cap(m.matchcap) < ncap {
    		m.matchcap = make([]int, ncap)
    	} else {
    		m.matchcap = m.matchcap[:ncap]
    	}
    
    	matched := false
    	for i := range m.matchcap {
    		m.matchcap[i] = -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  9. src/regexp/backtrack.go

    		b.visited = b.visited[:visitedSize]
    		clear(b.visited) // set to 0
    	}
    
    	if cap(b.cap) < ncap {
    		b.cap = make([]int, ncap)
    	} else {
    		b.cap = b.cap[:ncap]
    	}
    	for i := range b.cap {
    		b.cap[i] = -1
    	}
    
    	if cap(b.matchcap) < ncap {
    		b.matchcap = make([]int, ncap)
    	} else {
    		b.matchcap = b.matchcap[:ncap]
    	}
    	for i := range b.matchcap {
    		b.matchcap[i] = -1
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. src/runtime/os_illumos.go

    	}
    
    	if cents := int32(getcpucap()); cents > 0 {
    		// Convert from a percentage of CPUs to a number of CPUs,
    		// rounding up to make use of a fractional CPU
    		// e.g., 336% becomes 4 CPUs
    		ncap := (cents + 99) / 100
    		if ncap < n {
    			return ncap
    		}
    	}
    
    	return n
    }
    
    //go:nosplit
    func getrctl(controlname, oldbuf, newbuf unsafe.Pointer, flags uint32) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top