Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 795 for Destinations (0.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	ResourcePrefix(groupResource schema.GroupResource) string
    
    	// Configs gets configurations for all of registered storage destinations.
    	Configs() []storagebackend.Config
    
    	// Backends gets all backends for all registered storage destinations.
    	// Used for getting all instances for health validations.
    	// Deprecated: Use Configs instead
    	Backends() []Backend
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  2. samples/external/README.md

    By default, Istio-enabled services are unable to access services and URLs outside the cluster. Pods use <i>iptables</i> to transparently redirect all outbound traffic to the sidecar proxy, which only handles intra-cluster destinations.
    
    See [the Egress Task](https://istio.io/docs/tasks/traffic-management/egress/) for
    information on configuring Istio to contact external services.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/proxier_test.go

    			destinations, _ := fp.ipvs.GetRealServers(svc)
    			if len(destinations) != len(vs.RS) {
    				t.Errorf("Expected %d destinations, got %d destinations", len(vs.RS), len(destinations))
    			}
    			if len(vs.RS) == 1 {
    				if destinations[0].Address.String() != vs.RS[0].IP || destinations[0].Port != vs.RS[0].Port {
    					t.Errorf("Unexpected mismatch destinations")
    				}
    			}
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    	if proxier.nodePortAddresses.MatchAll() {
    		destinations := []string{"-m", "addrtype", "--dst-type", "LOCAL"}
    		// Block localhost nodePorts if they are not supported. (For IPv6 they never
    		// work, and for IPv4 they only work if we previously set `route_localnet`.)
    		if isIPv6 {
    			destinations = append(destinations, "!", "-d", "::1/128")
    		} else if !proxier.localhostNodePorts {
    			destinations = append(destinations, "!", "-d", "127.0.0.0/8")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. tests/integration/security/util/reachability/context.go

    type TestCase struct {
    	// ConfigFile is the name of the yaml contains the authentication policy and destination rule CRs
    	// that are needed for the test setup.
    	// The file is expected in the tests/integration/security/reachability/testdata folder.
    	ConfigFile string
    	Namespace  namespace.Instance
    
    	// CallOpts specified the call options for destination service. If not specified, use the default
    	// framework provided ones.
    	CallOpts []echo.CallOptions
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    // -------- helpers --------
    
    // Destinations associated with unlabeled for/switch/select stmts.
    // We push/pop one of these as we enter/leave each construct and for
    // each BranchStmt we scan for the innermost target of the right type.
    type targets struct {
    	tail         *targets // rest of stack
    	_break       *Block
    	_continue    *Block
    	_fallthrough *Block
    }
    
    // Destinations associated with a labeled block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/looprotate.go

    		idToIdx[loop.header.ID], idToIdx[p.ID] = idToIdx[p.ID], idToIdx[loop.header.ID]
    
    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    	// Move blocks to their destinations in a single pass.
    	// We rely here on the fact that loop headers must come
    	// before the rest of the loop.  And that relies on the
    	// fact that we only identify reducible loops.
    	j := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/sccp.go

    		condLattice := t.getLatticeCell(cond)
    		if condLattice.tag == bottom {
    			// we know nothing about control flow, add all branch destinations
    			t.edges = append(t.edges, block.Succs...)
    		} else if condLattice.tag == constant {
    			// add branchIdx destinations depends on its condition
    			var branchIdx int64
    			if block.Kind == BlockIf {
    				branchIdx = 1 - condLattice.val.AuxInt
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. tests/integration/pilot/common/traffic.go

    	// opts specifies the echo call options. When using RunForApps, the To will be set dynamically.
    	opts echo.CallOptions
    	// setupOpts allows modifying options based on sources/destinations
    	setupOpts func(src echo.Caller, opts *echo.CallOptions)
    	// check is used to build validators dynamically when using RunForApps based on the active/src dest pair
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 19:10:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/os/zero_copy_linux.go

    		err = rerr
    	}
    
    	return written, handled, wrapSyscallError("sendfile", err)
    }
    
    func (f *File) readFrom(r io.Reader) (written int64, handled bool, err error) {
    	// Neither copy_file_range(2) nor splice(2) supports destinations opened with
    	// O_APPEND, so don't bother to try zero-copy with these system calls.
    	//
    	// Visit https://man7.org/linux/man-pages/man2/copy_file_range.2.html#ERRORS and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top