Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 82 for registerScope (0.21 sec)

  1. pilot/pkg/security/authn/policy_applier.go

    	// TCP describes the tls context to use for TCP filter chains
    	TCP *tlsv3.DownstreamTlsContext
    	// HTTP describes the tls context to use for HTTP filter chains
    	HTTP *tlsv3.DownstreamTlsContext
    }
    
    var authnLog = log.RegisterScope("authn", "authn debugging")
    
    // Implementation of authn.PolicyApplier with v1beta1 API.
    type policyApplier struct {
    	// processedJwtRules is the consolidate JWT rules from all jwtPolicies.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  2. security/pkg/pki/ca/ca.go

    type SigningCAFileBundle struct {
    	RootCertFile    string
    	CertChainFiles  []string
    	SigningCertFile string
    	SigningKeyFile  string
    }
    
    var pkiCaLog = log.RegisterScope("pkica", "Citadel CA log")
    
    // caTypes is the enum for the CA type.
    type caTypes int
    
    type CertOpts struct {
    	// SubjectIDs are used for building the SAN extension for the certificate.
    	SubjectIDs []string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. operator/pkg/manifest/shared.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/util/sets"
    	pkgversion "istio.io/istio/pkg/version"
    )
    
    // installerScope is the scope for shared manifest package.
    var installerScope = log.RegisterScope("installer", "installer")
    
    // GenManifests generates a manifest map, keyed by the component name, from input file list and a YAML tree
    // representation of path-values passed through the --set flag.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. pilot/pkg/config/file/store.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var (
    	inMemoryKubeNameDiscriminator int64
    	scope                         = log.RegisterScope("file", "File client messages")
    )
    
    // KubeSource is an in-memory source implementation that can handle K8s style resources.
    type KubeSource struct {
    	mu sync.Mutex
    
    	name      string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. operator/pkg/tpath/tree.go

    	"fmt"
    	"reflect"
    	"regexp"
    	"strconv"
    	"strings"
    
    	"gopkg.in/yaml.v2"
    	yaml2 "sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/log"
    )
    
    var scope = log.RegisterScope("tpath", "tree traverser")
    
    // PathContext provides a means for traversing a tree towards the root.
    type PathContext struct {
    	// Parent in the Parent of this PathContext.
    	Parent *PathContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  10. pkg/adsc/delta.go

    	"k8s.io/utils/set"
    
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pkg/backoff"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var deltaLog = log.RegisterScope("deltaadsc", "delta adsc debugging")
    
    type resourceKey struct {
    	Name    string
    	TypeURL string
    }
    
    func (k resourceKey) shortName() string {
    	return v3.GetShortType(k.TypeURL) + "/" + k.Name
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top