Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for addPass (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Get gateway ip string (the first address) based on pod cidr.
    # For Windows nodes the pod gateway IP address is the first address in the pod
    # CIDR for the host.
    function Get_Gateway_From_CIDR([string] $cidr) {
      $network=Get_NetworkDecimal_From_CIDR($cidr)
      $gateway=ConvertTo_DottedDecimalIP($network+1)
      return $gateway
    }
    
    # Get endpoint gateway ip string (the second address) based on pod cidr.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    		str     string // output of String(). If "", use in.
    		wantErr string
    	}{
    		// Basic zero IPv4 address.
    		{
    			in: "0.0.0.0",
    			ip: MkAddr(Mk128(0, 0xffff00000000), Z4),
    		},
    		// Basic non-zero IPv4 address.
    		{
    			in: "192.168.140.255",
    			ip: MkAddr(Mk128(0, 0xffffc0a88cff), Z4),
    		},
    		// IPv4 address in windows-style "print all the digits" form.
    		{
    			in:      "010.000.015.001",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    						addressesToReport = append(addressesToReport, svchost)
    					}
    				}
    			}
    		}
    		// Do not report an address until we are ready. But once we are ready, never remove the address.
    		if len(addressesToReport) > 0 {
    			gs.Addresses = make([]k8s.GatewayStatusAddress, 0, len(addressesToReport))
    			for _, addr := range addressesToReport {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier.go

    		if err != nil {
    			proxier.logger.Error(err, "Failed to get node ip address matching nodeport cidrs, services with nodeport may not work as intended", "CIDRs", proxier.nodePortAddresses)
    		}
    		for _, ip := range nodeIPs {
    			if ip.IsLoopback() {
    				proxier.logger.Error(nil, "--nodeport-addresses includes localhost but localhost NodePorts are not supported", "address", ip.String())
    				continue
    			}
    			tx.Add(&knftables.Element{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Fold address into load/store.
    // If power10 with PCRel is not available, then
    // the assembler needs to generate several instructions and use
    // temp register for accessing global, and each time it will reload
    // the temp register. So don't fold address of global in that case if there is more than
    // one use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    // in state.f, using the information about block state in blockLocs.
    // The returned location lists are not fully complete. They are in
    // terms of SSA values rather than PCs, and have no base address/end
    // entries. They will be finished by PutLocationList.
    func (state *debugState) buildLocationLists(blockLocs []*BlockDebug) {
    	// Run through the function in program text order, building up location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top