Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for securityModel (0.19 sec)

  1. pilot/pkg/xds/sds.go

    	related := []model.ConfigKey{k}
    	// For secret without -cacert suffix, add the suffix
    	if !strings.HasSuffix(k.Name, securitymodel.SdsCaSuffix) {
    		k.Name += securitymodel.SdsCaSuffix
    		related = append(related, k)
    	} else {
    		// For secret with -cacert suffix, remove the suffix
    		k.Name = strings.TrimSuffix(k.Name, securitymodel.SdsCaSuffix)
    		related = append(related, k)
    	}
    	return related
    }
    
    type SecretGen struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. pilot/pkg/credentials/kube/secrets.go

    	"k8s.io/apimachinery/pkg/fields"
    	sa "k8s.io/apiserver/pkg/authentication/serviceaccount"
    	authorizationv1client "k8s.io/client-go/kubernetes/typed/authorization/v1"
    
    	"istio.io/istio/pilot/pkg/credentials"
    	securitymodel "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/kube/controllers"
    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/log"
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/istio_ca.go

    	"github.com/fsnotify/fsnotify"
    	"google.golang.org/grpc"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/security/v1beta1"
    	"istio.io/istio/pilot/pkg/features"
    	securityModel "istio.io/istio/pilot/pkg/security/model"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/env"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/security"
    	"istio.io/istio/security/pkg/cmd"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. doc/godebug.md

    the [`x509seriallength` setting](/pkg/crypto/x509/#ParseCertificate).
    
    Go 1.23 re-enabled support in html/template for ECMAScript 6 template literals by default.
    The [`jstmpllitinterp` setting](/pkg/html/template#hdr-Security_Model) no longer has
    any effect.
    
    Go 1.23 changed the default TLS cipher suites used by clients and servers when
    not explicitly configured, removing 3DES cipher suites. The default can be reverted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/vcs/vcs.go

    	PreferMod
    )
    
    // RepoRootForImportPath analyzes importPath to determine the
    // version control system, and code repository to use.
    func RepoRootForImportPath(importPath string, mod ModuleMode, security web.SecurityMode) (*RepoRoot, error) {
    	rr, err := repoRootFromVCSPaths(importPath, security, vcsPaths)
    	if err == errUnknownSite {
    		rr, err = repoRootForImportDynamic(importPath, mod, security)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/web/http.go

    	}
    	return nil, false
    }
    
    func interceptRequest(req *http.Request) {
    	if t, ok := interceptURL(req.URL); ok {
    		req.Host = req.URL.Host
    		req.URL.Host = t.ToHost
    	}
    }
    
    func get(security SecurityMode, url *urlpkg.URL) (*Response, error) {
    	start := time.Now()
    
    	if url.Scheme == "file" {
    		return getFile(url)
    	}
    
    	if enableTestHooks {
    		switch url.Host {
    		case "proxy.golang.org":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top