Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 47 for vips (0.07 sec)

  1. 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)
  2. pkg/proxy/winkernel/proxier.go

    				}
    			}
    			// For Overlay networks 'SourceVIP' on an Load balancer Policy can either be chosen as
    			// a) Source VIP configured on kube-proxy (or)
    			// b) Node IP of the current node
    			//
    			// For L2Bridge network the Source VIP is always the NodeIP of the current node and the same
    			// would be configured on kube-proxy as SourceVIP
    			//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    	rebuildall bool
    	noOpt      bool
    	isRelease  bool
    
    	vflag int // verbosity
    )
    
    // The known architectures.
    var okgoarch = []string{
    	"386",
    	"amd64",
    	"arm",
    	"arm64",
    	"loong64",
    	"mips",
    	"mipsle",
    	"mips64",
    	"mips64le",
    	"ppc64",
    	"ppc64le",
    	"riscv64",
    	"s390x",
    	"sparc64",
    	"wasm",
    }
    
    // The known operating systems.
    var okgoos = []string{
    	"darwin",
    	"dragonfly",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    	}
    	if err != nil {
    		t.Fatal(err)
    	}
    }
    
    func createEndpoints(t *testing.T, c kubernetes.Interface, name, namespace string, ports []v1.EndpointPort, ips []string) {
    	createEndpointSlice(t, c, name, name, namespace, ports, ips)
    }
    
    // nolint: unparam
    func createEndpointSlice(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string, ports []v1.EndpointPort, addrs []string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    						got.AutoAllocatedIPv6Address, tt.wantServices[i].AutoAllocatedIPv6Address)
    				}
    			}
    		})
    	}
    }
    
    func Test_autoAllocateIP_values(t *testing.T) {
    	ips := maxIPs
    	inServices := make([]*model.Service, ips)
    	for i := 0; i < ips; i++ {
    		temp := model.Service{
    			Hostname:       host.Name(fmt.Sprintf("foo%d.com", i)),
    			Resolution:     model.ClientSideLB,
    			DefaultAddress: constants.UnspecifiedIP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// podIP isn't in the status manager yet. The list of podIPs is used to
    	// generate the hosts file.
    	//
    	// We default to the IPs in the passed-in pod status, and overwrite them if the
    	// sandbox needs to be (re)started.
    	var podIPs []string
    	if podStatus != nil {
    		podIPs = podStatus.IPs
    	}
    
    	// Step 4: Create a sandbox for the pod if necessary.
    	podSandboxID := podContainerChanges.SandboxID
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pkg/controller/endpointslice/endpointslice_controller_test.go

    		service               *v1.Service
    		pods                  []*v1.Pod
    		expectedEndpointPorts []discovery.EndpointPort
    		expectedEndpoints     []discovery.Endpoint
    	}{
    		{
    			name: "pods with multiple IPs and Service with ipFamilies=ipv4",
    			service: &v1.Service{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "foobar",
    					Namespace:         "default",
    					CreationTimestamp: creationTimestamp,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    					continue
    				}
    
    				// if domain IPs intersect then it won't be an empty set.
    				// such an intersection means that bucket exists on etcd.
    				// but if we do see a difference with local domain IPs with
    				// hostSlice from etcd then we should update with newer
    				// domainIPs, we proceed to do that here.
    				bucketsToBeUpdated.Add(bucket.Name)
    				continue
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters_test.go

    		},
    		{
    			name:    "Dual --node-ips",
    			nodeIPs: []net.IP{netutils.ParseIPSloppy("10.1.1.1"), netutils.ParseIPSloppy("fd01::1234")},
    			expectedAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.1.1.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    				{Type: v1.NodeHostName, Address: testKubeletHostname},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    						e.Result.ClusterMatched = ""
    						e.Result.VirtualHostMatched = util.BlackHole
    					}
    					// TCP without a VIP will capture everything.
    					// Auto without a VIP is similar, but HTTP happens to work because routing is done on header
    					if call.Port == 82 || (call.Port == 81 && !call.IsHTTP()) {
    						e.Result.Error = nil
    						e.Result.ClusterMatched = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top