Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 82 for registerScope (0.67 sec)

  1. pilot/pkg/autoregistration/controller.go

    	// sequence of delays between successive queuings of a service.
    	//
    	// 5ms, 10ms, 20ms, 40ms, 80ms
    	maxRetries = 5
    )
    
    var log = istiolog.RegisterScope("wle", "wle controller debugging")
    
    type Controller struct {
    	instanceID string
    	// TODO move WorkloadEntry related tasks into their own object and give InternalGen a reference.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/endpoint_builder.go

    	"istio.io/istio/pkg/util/hash"
    	netutil "istio.io/istio/pkg/util/net"
    )
    
    var (
    	Separator = []byte{'~'}
    	Slash     = []byte{'/'}
    
    	// same as the above "xds" package
    	log = istiolog.RegisterScope("ads", "ads debugging")
    )
    
    // ConnectOriginate is the name for the resources associated with the origination of HTTP CONNECT.
    // Duplicated from v1alpha3/waypoint.go to avoid import cycle
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  3. pkg/dns/client/dns.go

    	"istio.io/istio/pkg/config/host"
    	dnsProto "istio.io/istio/pkg/dns/proto"
    	istiolog "istio.io/istio/pkg/log"
    	netutil "istio.io/istio/pkg/util/net"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var log = istiolog.RegisterScope("dns", "Istio DNS proxy")
    
    // LocalDNSServer holds configurations for the DNS downstreamUDPServer in Istio Agent
    type LocalDNSServer struct {
    	// Holds the pointer to the DNS lookup table
    	lookupTable atomic.Value
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy.go

    	ecdsLastAckVersion    atomic.String
    	ecdsLastNonce         atomic.String
    	downstreamGrpcOptions []grpc.ServerOption
    	istiodSAN             string
    }
    
    var proxyLog = log.RegisterScope("xdsproxy", "XDS Proxy in Istio Agent")
    
    const (
    	localHostIPv4 = "127.0.0.1"
    	localHostIPv6 = "::1"
    )
    
    func initXdsProxy(ia *Agent) (*XdsProxy, error) {
    	var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/secretcache.go

    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/security/pkg/monitoring"
    	nodeagentutil "istio.io/istio/security/pkg/nodeagent/util"
    	pkiutil "istio.io/istio/security/pkg/pki/util"
    )
    
    var (
    	cacheLog = istiolog.RegisterScope("cache", "cache debugging")
    	// The total timeout for any credential retrieval process, default value of 10s is used.
    	totalTimeout = time.Second * 10
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/delta.go

    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/xds"
    )
    
    var deltaLog = istiolog.RegisterScope("delta", "delta xds debugging")
    
    func (s *DiscoveryServer) StreamDeltas(stream DeltaDiscoveryStream) error {
    	if knativeEnv != "" && firstRequest.Load() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  7. pkg/config/validation/agent/validation.go

    const (
    	// Set some high upper bound to avoid weird configurations
    	// nolint: revive
    	connectTimeoutMax = time.Hour
    	// nolint: revive
    	connectTimeoutMin = time.Millisecond
    )
    
    var scope = log.RegisterScope("validation", "CRD validation debugging")
    
    type Warning error
    
    // Validation holds errors and warnings. They can be joined with additional errors by called AppendValidation
    type Validation struct {
    	Err     error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  8. operator/pkg/translate/translate.go

    	HelmValuesHubSubpath = "hub"
    	// HelmValuesTagSubpath is the subpath from the component root to the tag parameter.
    	HelmValuesTagSubpath = "tag"
    )
    
    var scope = log.RegisterScope("translator", "API translator")
    
    // Translator is a set of mappings to translate between API paths, charts, values.yaml and k8s paths.
    type Translator struct {
    	// Translations remain the same within a minor version.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 19:43:09 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/protomarshal"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	_   serviceregistry.Instance = &Controller{}
    	log                          = istiolog.RegisterScope("serviceentry", "ServiceEntry registry")
    )
    
    var (
    	prime  = 65011     // Used for secondary hash function.
    	maxIPs = 256 * 254 // Maximum possible IPs for address allocation.
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. pkg/adsc/adsc.go

    		adscLog.Warnf("Error for marshaling [%s]: %v", p.Name, serr)
    		return []byte(""), serr
    	}
    	serialItem := []byte("{\"" + p.Name + "\":" + strSer + "}")
    	return serialItem, nil
    }
    
    var adscLog = log.RegisterScope("adsc", "adsc debugging")
    
    func NewWithBackoffPolicy(discoveryAddr string, opts *ADSConfig, backoffPolicy backoff.BackOff) (*ADSC, error) {
    	adsc, err := New(discoveryAddr, opts)
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
Back to top