Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for registerScope (0.29 sec)

  1. pilot/pkg/xds/bench_test.go

    	proxy.SetServiceTargets(env.ServiceDiscovery)
    }
    
    var debugGeneration = env.Register("DEBUG_CONFIG_DUMP", false, "if enabled, print a full config dump of the generated config")
    
    var benchmarkScope = istiolog.RegisterScope("benchmark", "")
    
    // Add additional debug info for a test
    func logDebug(b *testing.B, m model.Resources) {
    	b.Helper()
    	b.StopTimer()
    
    	if debugGeneration.Get() {
    		for i, r := range m {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. pilot/pkg/simulation/traffic.go

    	"istio.io/istio/pilot/test/xdstest"
    	"istio.io/istio/pkg/config/host"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var log = istiolog.RegisterScope("simulation", "")
    
    type Protocol string
    
    const (
    	HTTP  Protocol = "http"
    	HTTP2 Protocol = "http2"
    	TCP   Protocol = "tcp"
    )
    
    type TLSMode string
    
    const (
    	Plaintext TLSMode = "plaintext"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    	// IgnoreReconcileAnnotation is annotation of IstioOperator CR so it would be ignored during Reconcile loop.
    	IgnoreReconcileAnnotation = "install.istio.io/ignoreReconcile"
    )
    
    var (
    	scope      = log.RegisterScope("installer", "installer")
    	restConfig *rest.Config
    )
    
    type Options struct {
    	Force                   bool
    	MaxConcurrentReconciles int
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. pkg/security/security.go

    	"os"
    	"strings"
    	"time"
    
    	"google.golang.org/grpc/metadata"
    	"google.golang.org/grpc/peer"
    
    	"istio.io/istio/pkg/env"
    	istiolog "istio.io/istio/pkg/log"
    )
    
    var securityLog = istiolog.RegisterScope("security", "security debugging")
    
    const (
    	// etc/certs files are used with external CA managing the certs,
    	// i.e. mounted Secret or external plugin.
    	// If present, FileMountedCerts should be true.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top