Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 314 for vips (1.17 sec)

  1. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// a final "1" bit. We merge the first "1" bit from the padding into dsbyte,
    	// giving 00000110b (0x06) and 00011111b (0x1f).
    	// [1] http://csrc.nist.gov/publications/drafts/fips-202/fips_202_draft.pdf
    	//     "Draft FIPS 202: SHA-3 Standard: Permutation-Based Hash and
    	//      Extendable-Output Functions (May 2014)"
    	dsbyte byte
    
    	i, n    int // storage[i:n] is the buffer, i is only used while squeezing
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    	// service dispatch
    	servicesChain       = "services"
    	serviceIPsMap       = "service-ips"
    	serviceNodePortsMap = "service-nodeports"
    
    	// set of IPs that accept NodePort traffic
    	nodePortIPsSet = "nodeport-ips"
    
    	// set of active ClusterIPs.
    	clusterIPsSet = "cluster-ips"
    
    	// handling for services with no endpoints
    	serviceEndpointsCheckChain  = "service-endpoints-check"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller.go

    // capture is enabled, Envoy will resolve the DNS to these IPs. The
    // listeners for TCP services will also be set up on these IPs. The
    // IPs allocated to a service entry may differ from istiod to istiod
    // but it does not matter because these IPs only affect the listener
    // IPs on a given proxy managed by a given istiod.
    //
    // NOTE: If DNS capture is not enabled by the proxy, the automatically
    // allocated IP addresses do not take effect.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. tests/integration/pilot/workloadentry_test.go

    			for _, cluster := range t.Clusters() {
    				if _, ok := gatewayAddresses[cluster.NetworkName()]; ok {
    					continue
    				}
    				ips, ports := i.EastWestGatewayFor(cluster).AddressesForPort(15443)
    				if ips != nil {
    					gatewayAddresses[cluster.NetworkName()] = gwAddr{ips[0], ports[0]}
    				}
    			}
    			if len(t.Clusters().Networks()) != len(gatewayAddresses) {
    				t.Skip("must have an east-west for each network")
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. src/internal/bytealg/compare_generic.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !386 && !amd64 && !s390x && !arm && !arm64 && !loong64 && !ppc64 && !ppc64le && !mips && !mipsle && !wasm && !mips64 && !mips64le && !riscv64
    
    package bytealg
    
    import _ "unsafe" // for go:linkname
    
    func Compare(a, b []byte) int {
    	l := len(a)
    	if len(b) < l {
    		l = len(b)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/opGen.go

    	{13, mips.REG_R13, 12, "R13"},
    	{14, mips.REG_R14, 13, "R14"},
    	{15, mips.REG_R15, 14, "R15"},
    	{16, mips.REG_R16, 15, "R16"},
    	{17, mips.REG_R17, 16, "R17"},
    	{18, mips.REG_R18, 17, "R18"},
    	{19, mips.REG_R19, 18, "R19"},
    	{20, mips.REG_R20, 19, "R20"},
    	{21, mips.REG_R21, 20, "R21"},
    	{22, mips.REG_R22, 21, "R22"},
    	{23, mips.REG_R24, 22, "R24"},
    	{24, mips.REG_R25, 23, "R25"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 1M bytes
    - Viewed (0)
  7. pkg/kubelet/pleg/generic.go

    }
    
    // getPodIP preserves an older cached status' pod IP if the new status has no pod IPs
    // and its sandboxes have exited
    func (g *GenericPLEG) getPodIPs(pid types.UID, status *kubecontainer.PodStatus) []string {
    	if len(status.IPs) != 0 {
    		return status.IPs
    	}
    
    	oldStatus, err := g.cache.Get(pid)
    	if err != nil || len(oldStatus.IPs) == 0 {
    		return nil
    	}
    
    	for _, sandboxStatus := range status.SandboxStatuses {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    				// ldelf.go reads that information and updates this field as
    				// appropriate.
    				ehdr.Flags = 0x5000002 // has entry point, Version5 EABI
    			}
    		} else if ctxt.Arch.Family == sys.MIPS {
    			ehdr.Flags = 0x50001004 /* MIPS 32 CPIC O32*/
    		}
    		fallthrough
    	default:
    		ehdr.Phoff = ELF32HDRSIZE
    		/* Must be ELF32HDRSIZE: first PHdr must follow ELF header */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/name_table.go

    	"istio.io/istio/pilot/pkg/model"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	dnsServer "istio.io/istio/pkg/dns/server"
    )
    
    // BuildNameTable produces a table of hostnames and their associated IPs that can then
    // be used by the agent to resolve DNS. This logic is always active. However, local DNS resolution
    // will only be effective if DNS capture is enabled in the proxy
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. pkg/kubelet/pleg/evented.go

    	}
    }
    
    func (e *EventedPLEG) getPodIPs(pid types.UID, status *kubecontainer.PodStatus) []string {
    	if len(status.IPs) != 0 {
    		return status.IPs
    	}
    
    	oldStatus, err := e.cache.Get(pid)
    	if err != nil || len(oldStatus.IPs) == 0 {
    		return nil
    	}
    
    	for _, sandboxStatus := range status.SandboxStatuses {
    		// If at least one sandbox is ready, then use this status update's pod IP
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top