Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for Preds (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. cmd/peer-rest-client.go

    	values.Set(peerRESTEnableSha256, strconv.FormatBool(opts.enableSha256))
    	values.Set(peerRESTEnableMultipart, strconv.FormatBool(opts.enableMultipart))
    	values.Set(peerRESTAccessKey, opts.creds.AccessKey)
    
    	respBody, err := client.callWithContext(context.Background(), peerRESTMethodSpeedTest, values, nil, -1)
    	if err != nil {
    		return SpeedTestResult{}, err
    	}
    	defer xhttp.DrainBody(respBody)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. cmd/admin-bucket-handlers.go

    			switch op {
    			case madmin.CredentialsUpdateType:
    				if !globalSiteReplicationSys.isEnabled() {
    					// credentials update is possible only in bucket replication. User will never
    					// know the site replicator creds.
    					tgt.Credentials = target.Credentials
    					tgt.TargetBucket = target.TargetBucket
    					tgt.Secure = target.Secure
    					tgt.Endpoint = target.Endpoint
    				}
    			case madmin.SyncUpdateType:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    	ctx := r.Context()
    
    	objectAPI, creds := validateAdminReq(ctx, w, r, policy.EnableUserAdminAction)
    	if objectAPI == nil {
    		return
    	}
    
    	vars := mux.Vars(r)
    	accessKey := vars["accessKey"]
    	status := vars["status"]
    
    	// you cannot enable or disable yourself.
    	if accessKey == creds.AccessKey {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, errInvalidArgument), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top