Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for vips (0.06 sec)

  1. tests/integration/pilot/common/routing.go

        name: http
        protocol: HTTP
    `, map[string]any{"IPs": ips})
    	}
    	ipv4 := "1.2.3.4"
    	ipv6 := "1234:1234:1234::1234:1234:1234"
    	dummyLocalhostServer := "127.0.0.1"
    	cases := []struct {
    		name string
    		// TODO(https://github.com/istio/istio/issues/30282) support multiple vips
    		ips      string
    		protocol string
    		server   string
    		skipCNI  bool
    		expected []string
    	}{
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier_test.go

    		add set ip kube-proxy cluster-ips { type ipv4_addr ; comment "Active ClusterIPs" ; }
    		add chain ip kube-proxy cluster-ips-check
    		add rule ip kube-proxy cluster-ips-check ip daddr @cluster-ips reject comment "Reject traffic to invalid ports of ClusterIPs"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		validSecondaryIP = utilnet.IsIPv4String
    	}
    	for _, ip := range podIPs {
    		if validPrimaryIP(ip) {
    			ips = append(ips, ip)
    			break
    		}
    	}
    	for _, ip := range podIPs {
    		if validSecondaryIP(ip) {
    			ips = append(ips, ip)
    			break
    		}
    	}
    	return ips
    }
    
    // convertStatusToAPIStatus initialize an api PodStatus for the given pod from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_test.go

    				{Name: "HOST_IP", Value: testKubeletHostIP},
    				{Name: "HOST_IPS", Value: testKubeletHostIP + "," + testKubeletHostIPv6},
    			},
    		},
    		{
    			name:               "downward api pod ips multiple ips",
    			ns:                 "downward-api",
    			enableServiceLinks: &falseValue,
    			container: &v1.Container{
    				Env: []v1.EnvVar{
    					{
    						Name: "POD_IP",
    						ValueFrom: &v1.EnvVarSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	EM_88K           Machine = 5   /* Motorola 88000. */
    	EM_860           Machine = 7   /* Intel i860. */
    	EM_MIPS          Machine = 8   /* MIPS R3000 Big-Endian only. */
    	EM_S370          Machine = 9   /* IBM System/370. */
    	EM_MIPS_RS3_LE   Machine = 10  /* MIPS R3000 Little-Endian. */
    	EM_PARISC        Machine = 15  /* HP PA-RISC. */
    	EM_VPP500        Machine = 17  /* Fujitsu VPP500. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. pkg/proxy/ipvs/proxier_test.go

    			fake.SetLocalAddresses(dev, addresses...)
    		}
    		ips, err := fake.GetAllLocalAddresses()
    		if err != nil {
    			t.Errorf("Unexpected error: %v", err)
    		}
    		devIps, err := fake.GetLocalAddresses("kube-ipvs0")
    		if err != nil {
    			t.Errorf("Unexpected error: %v", err)
    		}
    		ips = ips.Difference(devIps)
    		if !ips.Equal(sets.New(tc.expectIPs...)) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// set pod IP to hostIP directly in runtime.GetPodStatus
    	podStatus.IPs = make([]string, 0, len(apiPodStatus.PodIPs))
    	for _, ipInfo := range apiPodStatus.PodIPs {
    		podStatus.IPs = append(podStatus.IPs, ipInfo.IP)
    	}
    	if len(podStatus.IPs) == 0 && len(apiPodStatus.PodIP) > 0 {
    		podStatus.IPs = []string{apiPodStatus.PodIP}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //   - For GOARCH=arm64, GOARM64=v8.{0-9} and v9.{0-5}
    //     correspond to the arm64.v8.{0-9} and arm64.v9.{0-5} feature build tags.
    //   - For GOARCH=mips or mipsle,
    //     GOMIPS=hardfloat and softfloat
    //     correspond to the mips.hardfloat and mips.softfloat
    //     (or mipsle.hardfloat and mipsle.softfloat) feature build tags.
    //   - For GOARCH=mips64 or mips64le,
    //     GOMIPS64=hardfloat and softfloat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        output = input / (bias + alpha * sqr_sum) ** beta
    
    For details, see [Krizhevsky et al., ImageNet classification with deep
    convolutional neural networks (NIPS 2012)](http://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks).
      }];
    
      let arguments = (ins
          TFL_FpTensor:$input,
          I32Attr:$radius,
          F32Attr:$bias,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    		args := []string{"-mabi=64"}
    		if cfg.GOMIPS64 == "hardfloat" {
    			return append(args, "-mhard-float")
    		} else if cfg.GOMIPS64 == "softfloat" {
    			return append(args, "-msoft-float")
    		}
    	case "mips", "mipsle":
    		args := []string{"-mabi=32", "-march=mips32"}
    		if cfg.GOMIPS == "hardfloat" {
    			return append(args, "-mhard-float", "-mfp32", "-mno-odd-spreg")
    		} else if cfg.GOMIPS == "softfloat" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top