Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for addUses (0.56 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    		makeIstioObject(t, store, workloadEntry)
    
    		instances := []EndpointResponse{
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: pod.Status.PodIP, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    			{Address: workloadEntry.Spec.(*networking.WorkloadEntry).Address, Port: 80},
    		}
    
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			t.Errorf("multiple allocations of same IP address to different services with different hostname: %s", svc.AutoAllocatedIPv4Address)
    		}
    		gotIPMap[svc.AutoAllocatedIPv4Address] = svc.Hostname.String()
    		// Validate that IP address is valid.
    		ip := net.ParseIP(svc.AutoAllocatedIPv4Address)
    		if ip == nil {
    			t.Errorf("invalid IP address %s : %s", svc.AutoAllocatedIPv4Address, svc.Hostname.String())
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    		{Address: "1.2.3.4", Port: 81, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		{Address: "1.2.3.4", Port: 82, Protocol: simulation.TCP, HostHeader: "headless.default.svc.cluster.local"},
    
    		// Use short host name
    		{Address: "1.2.3.4", Port: 83, Protocol: simulation.TCP, TLS: simulation.TLS, HostHeader: "headless.default"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	return file_workloadapi_workload_proto_rawDescGZIP(), []int{7, 0}
    }
    
    // Address represents a unique address.
    //
    // Address joins two sub-resources, Workload and Service, to support querying by IP address.
    // Address is intended to be able to be looked up on-demand, allowing a client
    // to answer a question like "what is this IP address", similar to a reverse DNS lookup.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. src/runtime/malloc.go

    	// of the address space is available, and the OS can now
    	// provide addresses outside of those 33 bits. Pick 40 bits
    	// as a reasonable balance between address space usage by the
    	// page allocator, and flexibility for what mmap'd regions
    	// we'll accept for the heap. We can't just move to the full
    	// 48 bits because this uses too much address space for older
    	// iOS versions.
    	// TODO(mknyszek): Once iOS <14 is deprecated, promote ios/arm64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  6. tests/integration/ambient/baseline_test.go

    								}
    								for _, opt := range callOptions {
    									opt := opt.DeepCopy()
    									selfSend := dstWl.Address() == srcWl.Address()
    									if supportsL7(opt, src, dst) {
    										opt.Check = httpValidator
    									} else {
    										opt.Check = tcpValidator
    									}
    
    									opt.Address = dstWl.Address()
    									opt.Check = check.And(opt.Check, check.Hostname(dstWl.PodName()))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	if len(ep) != 2 {
    		t.Fatalf("Invalid response for GetEndpoints %v", ep)
    	}
    
    	if ep[0].Address == "10.10.1.1" && ep[0].Network != "network1" {
    		t.Fatalf("Endpoint with IP 10.10.1.1 is expected to be in network1 but get: %s", ep[0].Network)
    	}
    
    	if ep[1].Address == "10.11.1.2" && ep[1].Network != "network2" {
    		t.Fatalf("Endpoint with IP 10.11.1.2 is expected to be in network2 but get: %s", ep[1].Network)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	4:   "interrupted system call",
    	5:   "I/O error",
    	6:   "no such device or address",
    	7:   "arg list too long",
    	8:   "exec format error",
    	9:   "bad file number",
    	10:  "no child processes",
    	11:  "resource temporarily unavailable",
    	12:  "not enough space",
    	13:  "permission denied",
    	14:  "bad address",
    	15:  "block device required",
    	16:  "device busy",
    	17:  "file exists",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	for _, l := range listeners {
    		if port == l.Address.GetSocketAddress().GetPortValue() {
    			return l
    		}
    	}
    
    	return nil
    }
    
    func findListenerByAddress(listeners []*listener.Listener, address string) *listener.Listener {
    	for _, l := range listeners {
    		if address == l.Address.GetSocketAddress().Address {
    			return l
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    // top of this file.
    type typePointers struct {
    	// elem is the address of the current array element of type typ being iterated over.
    	// Objects that are not arrays are treated as single-element arrays, in which case
    	// this value does not change.
    	elem uintptr
    
    	// addr is the address the iterator is currently working from and describes
    	// the address of the first word referenced by mask.
    	addr uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top