Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 99 for Preds (0.05 sec)

  1. pilot/pkg/bootstrap/server.go

    		// Make sure we have security
    		log.Warnf("skipping Kubernetes credential reader; PILOT_ENABLE_XDS_IDENTITY_CHECK must be set to true for this feature.")
    	} else {
    		creds := kubecredentials.NewMulticluster(s.clusterID, s.multiclusterController)
    		creds.AddSecretHandler(func(name string, namespace string) {
    			s.XDSServer.ConfigUpdate(&model.PushRequest{
    				Full:           false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	if err := peerCertVerifier.AddMappingFromPEM("cluster.local",
    		testutil.ReadFile(t, filepath.Join(env.IstioSrc, "./tests/testdata/certs/pilot/root-cert.pem"))); err != nil {
    		t.Fatal(err)
    	}
    	return grpc.Creds(credentials.NewTLS(&tls.Config{
    		Certificates: []tls.Certificate{cert},
    		ClientAuth:   tls.VerifyClientCertIfGiven,
    		ClientCAs:    peerCertVerifier.GetGeneralCertPool(),
    		MinVersion:   tls.VersionTLS12,
    	}))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. cmd/sftp-server-driver.go

    		f.permissions.CriticalOptions["AccessKey"],
    		f.permissions.CriticalOptions["SecretKey"],
    		f.permissions.CriticalOptions["SessionToken"],
    	)
    	return minio.New(f.endpoint, &minio.Options{
    		Creds:     mcreds,
    		Secure:    globalIsTLS,
    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    func (f *sftpDriver) AccessKey() string {
    	return f.permissions.CriticalOptions["AccessKey"]
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    func (s *state) updateUnsetPredPos(b *ssa.Block) {
    	if b.Pos == src.NoXPos {
    		s.Fatalf("Block %s should have a position", b)
    	}
    	bestPos := src.NoXPos
    	for _, e := range b.Preds {
    		p := e.Block()
    		if !p.LackingPos() {
    			continue
    		}
    		if bestPos == src.NoXPos {
    			bestPos = b.Pos
    			for _, v := range b.Values {
    				if v.LackingPos() {
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. cmd/server-main.go

    	region := globalSite.Region()
    	if region == "" {
    		region = "us-east-1"
    	}
    	bootstrapTrace("globalMinioClient", func() {
    		globalMinioClient, err = minio.New(globalLocalNodeName, &minio.Options{
    			Creds:     credentials.NewStaticV4(globalActiveCred.AccessKey, globalActiveCred.SecretKey, ""),
    			Secure:    globalIsTLS,
    			Transport: globalRemoteTargetTransport,
    			Region:    region,
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers.go

    	ctx, cancel := context.WithCancel(r.Context())
    	defer cancel()
    
    	objectAPI, creds := validateAdminReq(ctx, w, r, policy.HealthInfoAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	if !globalAPIConfig.permitRootAccess() {
    		rd, wr := isAllowedRWAccess(r, creds, globalObjectPerfBucket)
    		if !rd || !wr {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, AdminError{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  7. cmd/iam.go

    func (sys *IAMSys) updateGroupMembershipsForLDAP(ctx context.Context) {
    	// 1. Collect all LDAP users with active creds.
    	allCreds := sys.store.GetSTSAndServiceAccounts()
    	// List of unique LDAP (parent) user DNs that have active creds
    	var parentUsers []string
    	// Map of LDAP user to list of active credential objects
    	parentUserToCredsMap := make(map[string][]auth.Credentials)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. pkg/adsc/adsc.go

    	if len(config.CertDir) > 0 || config.SecretManager != nil {
    		tlsCfg, err := tlsConfig(config)
    		if err != nil {
    			return nil, err
    		}
    		creds := credentials.NewTLS(tlsCfg)
    		grpcDialOptions = append(grpcDialOptions, grpc.WithTransportCredentials(creds))
    	}
    
    	if len(grpcDialOptions) == len(defaultGrpcDialOptions) {
    		// Only disable transport security if the user didn't supply custom dial options
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  9. cmd/auth-handler.go

    		nsecret, err := getTokenSigningKey()
    		if err != nil {
    			return nil, toAPIErrorCode(r.Context(), err)
    		}
    		// sign root's temporary accounts also with site replicator creds
    		if cred.ParentUser != globalActiveCred.AccessKey || cred.IsTemp() {
    			secret = nsecret
    		}
    	}
    	if cred.IsServiceAccount() {
    		token = cred.SessionToken
    		secret = cred.SecretKey
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    	k8salpha "sigs.k8s.io/gateway-api/apis/v1alpha2"
    	k8sbeta "sigs.k8s.io/gateway-api/apis/v1beta1"
    
    	istio "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pilot/pkg/model/kstatus"
    	"istio.io/istio/pilot/pkg/serviceregistry/kube"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top