Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for registerScope (0.39 sec)

  1. security/pkg/nodeagent/sds/sdsservice.go

    	"istio.io/istio/pilot/pkg/util/protoconv"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/model"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/xds"
    )
    
    var sdsServiceLog = log.RegisterScope("sds", "SDS service debugging")
    
    type sdsservice struct {
    	st security.SecretManager
    
    	stop       chan struct{}
    	rootCaPath string
    	pkpConf    *mesh.PrivateKeyProvider
    
    	sync.Mutex
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/controller/controller.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/ptr"
    	"istio.io/istio/pkg/webhooks/util"
    )
    
    var scope = log.RegisterScope("validationController", "validation webhook controller")
    
    type Options struct {
    	// Istio system namespace where istiod resides.
    	WatchedNamespace string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/spiffe/spiffe.go

    	defaultTrustDomain = constants.DefaultClusterLocalDomain
    
    	ServiceAccountSegment = "sa"
    	NamespaceSegment      = "ns"
    )
    
    var (
    	firstRetryBackOffTime = time.Millisecond * 50
    
    	spiffeLog = log.RegisterScope("spiffe", "SPIFFE library logging")
    )
    
    type Identity struct {
    	TrustDomain    string
    	Namespace      string
    	ServiceAccount string
    }
    
    func ParseIdentity(s string) (Identity, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/wasm/cache.go

    	"path/filepath"
    	"strconv"
    	"strings"
    	"sync"
    	"time"
    
    	"github.com/google/go-containerregistry/pkg/name"
    
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var wasmLog = log.RegisterScope("wasm", "")
    
    const (
    	// oci URL prefix
    	ociURLPrefix = "oci://"
    
    	// sha256 scheme prefix
    	sha256SchemePrefix = "sha256:"
    )
    
    // Cache models a Wasm module cache.
    type Cache interface {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/crdclient/client.go

    	"istio.io/istio/pkg/kube/kubetypes"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/queue"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var scope = log.RegisterScope("kube", "Kubernetes client messages")
    
    // Client is a client for Istio CRDs, implementing config store cache
    // This is used for CRUD operators on Istio configuration, as well as handling of events on config changes
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top