Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GD (0.17 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    		}
    	}
    }
    
    // checkCopyLocksGenDecl checks whether lock is copied
    // in variable declaration.
    func checkCopyLocksGenDecl(pass *analysis.Pass, gd *ast.GenDecl) {
    	if gd.Tok != token.VAR {
    		return
    	}
    	for _, spec := range gd.Specs {
    		valueSpec := spec.(*ast.ValueSpec)
    		for i, x := range valueSpec.Values {
    			if path := lockPathRhs(pass, x); path != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    }
    
    // GetGroupDescription - builds up group description
    func (store *IAMStoreSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	cache := store.rlock()
    	defer store.runlock()
    
    	ps, updatedAt, err := cache.policyDBGet(store, group, true)
    	if err != nil {
    		return gd, err
    	}
    
    	policy := strings.Join(ps, ",")
    
    	if store.getUsersSysType() != MinIOUsersSysType {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  3. cmd/iam.go

    	sys.notifyForGroup(ctx, group)
    	return updatedAt, nil
    }
    
    // GetGroupDescription - builds up group description
    func (sys *IAMSys) GetGroupDescription(group string) (gd madmin.GroupDesc, err error) {
    	if !sys.Initialized() {
    		return gd, errServerNotInitialized
    	}
    
    	return sys.store.GetGroupDescription(group)
    }
    
    // ListGroups - lists groups.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top