Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 136 for zone2 (0.04 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    ip6tables -t nat -N ISTIO_INBOUND
    ip6tables -t nat -N ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    ip6tables -t nat -N ISTIO_INBOUND
    ip6tables -t nat -N ISTIO_REDIRECT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/testprog/stacks.go

    	go func() { // func2
    		var c chan int
    		c <- 0
    	}()
    	go func() { // func3
    		var c chan int
    		<-c
    	}()
    	done1 := make(chan bool)
    	go func() { // func4
    		<-done1
    	}()
    	done2 := make(chan bool)
    	go func() { // func5
    		done2 <- true
    	}()
    	c1 := make(chan int)
    	c2 := make(chan int)
    	go func() { // func6
    		select {
    		case <-c1:
    		case <-c2:
    		}
    	}()
    	var mu sync.Mutex
    	mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/locality/locality.go

    import (
    	"fmt"
    	"strings"
    )
    
    type Instance struct {
    	Zone   string
    	Region string
    }
    
    func (l Instance) String() string {
    	return fmt.Sprintf("%s/%s", l.Region, l.Zone)
    }
    
    func Parse(s string) Instance {
    	parts := strings.Split(s, "/")
    	if len(parts) != 2 {
    		panic("invalid locality string: " + s)
    	}
    	return Instance{
    		Region: parts[0],
    		Zone:   parts[1],
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 27 20:55:37 UTC 2022
    - 979 bytes
    - Viewed (0)
  5. src/net/ipsock.go

    	}
    	inetaddr := func(ip IPAddr) Addr {
    		switch net {
    		case "tcp", "tcp4", "tcp6":
    			return &TCPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
    		case "udp", "udp4", "udp6":
    			return &UDPAddr{IP: ip.IP, Port: portnum, Zone: ip.Zone}
    		case "ip", "ip4", "ip6":
    			return &IPAddr{IP: ip.IP, Zone: ip.Zone}
    		default:
    			panic("unexpected network: " + net)
    		}
    	}
    	if host == "" {
    		return addrList{inetaddr(IPAddr{})}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/time/zoneinfo_js.go

    	if offset < 0 {
    		z.name += "-"
    		offset *= -1
    	} else {
    		z.name += "+"
    	}
    	z.name += itoa.Itoa(offset / 60)
    	min := offset % 60
    	if min != 0 {
    		z.name += ":" + itoa.Itoa(min)
    	}
    	localLoc.zone = []zone{z}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 29 20:05:34 UTC 2022
    - 1K bytes
    - Viewed (0)
  7. src/cmd/internal/test2json/testdata/framefuzz.test

    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv6+zone
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6
    === NAME  TestAddrStringAllocs
    === RUN   TestAddrStringAllocs/ipv4-in-ipv6+zone
    === NAME  TestAddrStringAllocs
    --- PASS: TestAddrStringAllocs (0.00s)
        --- PASS: TestAddrStringAllocs/zero (0.00s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1337 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. src/runtime/os_illumos.go

    		return 0
    	}
    
    	// The "zone.cpu-cap" resource control, as described in
    	// resource_controls(5), "sets a limit on the amount of CPU time that
    	// can be used by a zone.  The unit used is the percentage of a single
    	// CPU that can be used by all user threads in a zone, expressed as an
    	// integer."  A C string of the name must be passed to getrctl(2).
    	name := []byte("zone.cpu-cap\x00")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 18:06:12 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  10. src/net/iprawsock_posix.go

    }
    
    func (a *IPAddr) sockaddr(family int) (syscall.Sockaddr, error) {
    	if a == nil {
    		return nil, nil
    	}
    	return ipToSockaddr(family, a.IP, 0, a.Zone)
    }
    
    func (a *IPAddr) toLocal(net string) sockaddr {
    	return &IPAddr{loopbackIP(net), a.Zone}
    }
    
    func (c *IPConn) readFrom(b []byte) (int, *IPAddr, error) {
    	// TODO(cw,rsc): consider using readv if we know the family
    	// type to avoid the header trim/copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top