Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for addPass (0.13 sec)

  1. pkg/security/security.go

    }
    
    // RemoteAddress returns the authenticated remote address from AuthContext.
    func (ac *AuthContext) RemoteAddress() string {
    	if ac.GrpcContext != nil {
    		return GetConnectionAddress(ac.GrpcContext)
    	} else if ac.Request != nil {
    		return ac.Request.RemoteAddr
    	}
    	return ""
    }
    
    // Header returns the authenticated remote address from AuthContext.
    func (ac *AuthContext) Header(header string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. pkg/config/security/security.go

    				errs = multierror.Append(errs, fmt.Errorf("bad CIDR range (%s): %v", v, err))
    			}
    		} else {
    			if _, err := netip.ParseAddr(v); err != nil {
    				errs = multierror.Append(errs, fmt.Errorf("bad IP address (%s)", v))
    			}
    		}
    	}
    	return errs.ErrorOrNil()
    }
    
    func ValidatePorts(ports []string) error {
    	var errs *multierror.Error
    	for _, port := range ports {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:43:34 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/liveness/plive.go

    		if !n.Used() {
    			return -1, 0
    		}
    	}
    
    	if n.Class == ir.PPARAM && !n.Addrtaken() && n.Type().Size() > int64(types.PtrSize) {
    		// Only aggregate-typed arguments that are not address-taken can be
    		// partially live.
    		lv.partLiveArgs[n] = true
    	}
    
    	var effect liveEffect
    	// Read is a read, obviously.
    	//
    	// Addr is a read also, as any subsequent holder of the pointer must be able
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/dashboard_test.go

    					log.Warnf("requests failed: %v", err)
    				}
    				_, err = ing.Call(echo.CallOptions{
    					Port: echo.Port{
    						Protocol:    protocol.TCP,
    						ServicePort: port,
    					},
    					Address: host,
    					HTTP: echo.HTTP{
    						Path:    fmt.Sprintf("/echo-%s", apps.Namespace.Name()),
    						Headers: headers.New().WithHost("server").Build(),
    					},
    					Check: check.OK(),
    					Retry: echo.Retry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    	// the rest of the features if their port is empty.
    	// Currently runs readiness and debug (if enabled)
    	httpMux *http.ServeMux
    
    	// httpsMux listens on the httpsAddr(15017), handling webhooks
    	// If the address os empty, the webhooks will be set on the default httpPort.
    	httpsMux *http.ServeMux // webhooks
    
    	// fileWatcher used to watch mesh config, networks and certificates.
    	fileWatcher filewatcher.FileWatcher
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_waypoint.go

    func (lb *ListenerBuilder) buildConnectTerminateListener(routes []*route.Route) *listener.Listener {
    	actualWildcard, _ := getActualWildcardAndLocalHost(lb.node)
    	l := &listener.Listener{
    		Name:    ConnectTerminate,
    		Address: util.BuildAddress(actualWildcard, model.HBoneInboundListenPort),
    		FilterChains: []*listener.FilterChain{
    			{
    				Name: "default",
    				TransportSocket: &core.TransportSocket{
    					Name: "tls",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            // Add to the end of the queue, so that we traverse the graph in breadth-wise order to pick up as many conflicts as
            // possible before attempting to resolve them
            if (node.enqueue()) {
                queue.addLast(node);
            }
        }
    
        /**
         * Called when a change is made to a configuration node, such that its dependency graph may now be smaller than it previously was, and the node should be visited.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    				s.addNamedValue(n, v) // This helps with debugging information, not needed for compilation itself.
    			} else { // address was taken AND/OR too large for SSA
    				paramAssignment := ssa.ParamAssignmentForArgName(s.f, n)
    				if len(paramAssignment.Registers) > 0 {
    					if ssa.CanSSA(n.Type()) { // SSA-able type, so address was taken -- receive value in OpArg, DO NOT bind to var, store immediately to memory.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K 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. internal/grid/connection.go

    // ContextDialer is a dialer that can be used to dial a remote.
    type ContextDialer func(ctx context.Context, network, address string) (net.Conn, error)
    
    // DialContext implements the Dialer interface.
    func (c ContextDialer) DialContext(ctx context.Context, network, address string) (net.Conn, error) {
    	return c(ctx, network, address)
    }
    
    const (
    	defaultOutQueue    = 65535    // kind of close to max open fds per user
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top