Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for registerScope (0.4 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. security/pkg/pki/ca/selfsignedcarootcertrotator.go

    	"istio.io/istio/pkg/log"
    	"istio.io/istio/security/pkg/k8s/controller"
    	"istio.io/istio/security/pkg/pki/util"
    	certutil "istio.io/istio/security/pkg/util"
    )
    
    var rootCertRotatorLog = log.RegisterScope("rootcertrotator", "Self-signed CA root cert rotator log")
    
    type SelfSignedCARootCertRotatorConfig struct {
    	certInspector      certutil.CertUtil
    	caStorageNamespace string
    	org                string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. 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)
  4. operator/pkg/component/component.go

    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	// String to emit for any component which is disabled.
    	componentDisabledStr = "component is disabled."
    	yamlCommentStr       = "#"
    )
    
    var scope = log.RegisterScope("installer", "installer")
    
    // Options defines options for a component.
    type Options struct {
    	// installSpec is the global IstioOperatorSpec.
    	InstallSpec *v1alpha1.IstioOperatorSpec
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  5. operator/pkg/validate/common.go

    	"sigs.k8s.io/yaml"
    
    	"istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/util"
    	"istio.io/istio/pkg/log"
    )
    
    var (
    	scope = log.RegisterScope("validation", "API validation")
    
    	// alphaNumericRegexp defines the alpha numeric atom, typically a
    	// component of names. This only allows lower case characters and digits.
    	alphaNumericRegexp = match(`[a-z0-9]+`)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  6. pkg/log/config_test.go

    				t.Errorf("formatDate(%v) => %s, want micros: %s", v.input, testEnc.output, v.want)
    			}
    		})
    	}
    }
    
    func TestOverrides(t *testing.T) {
    	resetGlobals()
    	s := RegisterScope("TestOverrides", "For testing")
    
    	o := DefaultOptions()
    	o.outputLevels = "default:debug,all:info"
    	if err := Configure(o); err != nil {
    		t.Errorf("Expecting success, got %v", err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. pilot/pkg/config/kube/gateway/controller.go

    	"istio.io/istio/pkg/kube/kubetypes"
    	istiolog "istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/util/sets"
    )
    
    var log = istiolog.RegisterScope("gateway", "gateway-api controller")
    
    var errUnsupportedOp = fmt.Errorf("unsupported operation: the gateway config store is a read-only view")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. 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)
Back to top