Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for securityModel (0.2 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. src/cmd/go/internal/web/api.go

    	"bytes"
    	"fmt"
    	"io"
    	"io/fs"
    	"net/url"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // SecurityMode specifies whether a function should make network
    // calls using insecure transports (eg, plain text HTTP).
    // The zero value is "secure".
    type SecurityMode int
    
    const (
    	SecureOnly      SecurityMode = iota // Reject plain HTTP; validate HTTPS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/web/bootstrap.go

    // trees that potentially require C linking,
    // like the use of "net/http" in vcs.go.
    
    package web
    
    import (
    	"errors"
    	urlpkg "net/url"
    )
    
    func get(security SecurityMode, url *urlpkg.URL) (*Response, error) {
    	return nil, errors.New("no http in bootstrap go command")
    }
    
    func openBrowser(url string) bool { return false }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:00:34 UTC 2022
    - 691 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTransportImpl.java

            int securityMode = Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED;
            if ( this.signingEnforced || ( first != null && first.isSigningRequired() ) ) {
                securityMode = Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED | Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED;
            }
    
            return securityMode;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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