Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for allow_any (0.13 sec)

  1. pkg/config/validation/validation_test.go

    					},
    					DefaultEndpoint: "[::1]:9999",
    				},
    			},
    			Egress: []*networking.IstioEgressListener{
    				{
    					Hosts: []string{"*/*"},
    				},
    			},
    		}, true, false},
    		{"ALLOW_ANY sidecar egress policy with no egress proxy ", &networking.Sidecar{
    			OutboundTrafficPolicy: &networking.OutboundTrafficPolicy{
    				Mode: networking.OutboundTrafficPolicy_ALLOW_ANY,
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		return
    	}
    	mode := tp.GetMode()
    	if tp.EgressProxy != nil {
    		if mode != networking.OutboundTrafficPolicy_ALLOW_ANY {
    			errs = appendErrors(errs, fmt.Errorf("sidecar: egress_proxy must be set only with ALLOW_ANY outbound_traffic_policy mode"))
    			return
    		}
    
    		errs = appendErrors(errs, agent.ValidateFQDN(tp.EgressProxy.GetHost()))
    
    		if tp.EgressProxy.Port == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    type nvcDriver struct {
    	fakeDriver
    	skipNamedValueCheck bool
    }
    
    func (d *nvcDriver) Open(dsn string) (driver.Conn, error) {
    	c, err := d.fakeDriver.Open(dsn)
    	fc := c.(*fakeConn)
    	fc.db.allowAny = true
    	return &nvcConn{fc, d.skipNamedValueCheck}, err
    }
    
    type nvcConn struct {
    	*fakeConn
    	skipNamedValueCheck bool
    }
    
    type decimalInt struct {
    	value int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top