Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for zone2 (0.13 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool.cc

      // appropriate size and switch the rounding mode to ceil. When computing the
      // average of a given window, the elements which exist in the newly padded
      // zones will be counted as present elements. Therefore in some windows we
      // will overcount the divisors.
      //    Following from (LEMMA 1) the only windows which contain overcounted
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/net/main_test.go

    			{"tcp6", "[fe80::1%" + index + "]:2", &TCPAddr{IP: ParseIP("fe80::1"), Port: 2, Zone: index}, nil},
    		}...)
    		resolveUDPAddrTests = append(resolveUDPAddrTests, []resolveUDPAddrTest{
    			{"udp6", "[fe80::1%" + ifi.Name + "]:1", &UDPAddr{IP: ParseIP("fe80::1"), Port: 1, Zone: zoneCache.name(ifi.Index)}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/net/ipsock_posix.go

    //
    //go:linkname ipToSockaddr
    func ipToSockaddr(family int, ip IP, port int, zone string) (syscall.Sockaddr, error) {
    	switch family {
    	case syscall.AF_INET:
    		sa, err := ipToSockaddrInet4(ip, port)
    		if err != nil {
    			return nil, err
    		}
    		return &sa, nil
    	case syscall.AF_INET6:
    		sa, err := ipToSockaddrInet6(ip, port, zone)
    		if err != nil {
    			return nil, err
    		}
    		return &sa, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. src/net/udpsock_posix.go

    }
    
    func (a *UDPAddr) sockaddr(family int) (syscall.Sockaddr, error) {
    	if a == nil {
    		return nil, nil
    	}
    	return ipToSockaddr(family, a.IP, a.Port, a.Zone)
    }
    
    func (a *UDPAddr) toLocal(net string) sockaddr {
    	return &UDPAddr{loopbackIP(net), a.Port, a.Zone}
    }
    
    func (c *UDPConn) readFrom(b []byte, addr *UDPAddr) (int, *UDPAddr, error) {
    	var n int
    	var err error
    	switch c.fd.family {
    	case syscall.AF_INET:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/99-minor/time/67470.md

    [Parse] and [ParseInLocation] now return an error if the time zone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 17:30:16 UTC 2024
    - 91 bytes
    - Viewed (0)
  6. cluster/gce/upgrade-aliases.sh

    }
    
    # Detect the subnetwork where the K8s cluster resides.
    #
    # Assumed vars:
    #  KUBE_MASTER
    #  PROJECT
    #  ZONE
    # Vars set:
    #  IP_ALIAS_SUBNETWORK
    function detect-k8s-subnetwork() {
      local subnetwork_url
      subnetwork_url=$(gcloud compute instances describe \
        "${KUBE_MASTER}" --project="${PROJECT}" --zone="${ZONE}" \
        --format='value(networkInterfaces[0].subnetwork)')
      if [[ -n ${subnetwork_url} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1.EndpointSlice.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.30.0/discovery.k8s.io.v1.EndpointSlice.yaml

      targetRef:
        apiVersion: apiVersionValue
        fieldPath: fieldPathValue
        kind: kindValue
        name: nameValue
        namespace: namespaceValue
        resourceVersion: resourceVersionValue
        uid: uidValue
      zone: zoneValue
    kind: EndpointSlice
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/net/tcpsock_posix.go

    }
    
    func (a *TCPAddr) sockaddr(family int) (syscall.Sockaddr, error) {
    	if a == nil {
    		return nil, nil
    	}
    	return ipToSockaddr(family, a.IP, a.Port, a.Zone)
    }
    
    func (a *TCPAddr) toLocal(net string) sockaddr {
    	return &TCPAddr{loopbackIP(net), a.Port, a.Zone}
    }
    
    func (c *TCPConn) readFrom(r io.Reader) (int64, error) {
    	if n, err, handled := spliceFrom(c.fd, r); handled {
    		return n, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:54:32 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/api.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package configdump
    
    type Locality struct {
    	Region  string `json:"region,omitempty"`
    	Zone    string `json:"zone,omitempty"`
    	Subzone string `json:"subzone,omitempty"`
    }
    
    type ZtunnelWorkload struct {
    	WorkloadIPs           []string          `json:"workloadIps"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top