Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for groupless (0.09 sec)

  1. pkg/controlplane/instance_test.go

    	// /apis exists in release-1.1
    	resp, err = http.Get(server.URL + "/apis")
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	groupList := metav1.APIGroupList{}
    	assert.NoError(decodeResponse(resp, &groupList))
    	assert.Equal(groupList.APIVersion, "")
    
    	// /apis/autoscaling doesn't exist in release-1.1, so the APIVersion field
    	// should be non-empty in the results returned by the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		if isGroupDescEqual(latestGroupStat.groupDesc.GroupDesc, gStatus.groupDesc.GroupDesc) {
    			continue
    		}
    		peerName := info.Sites[dID].Name
    		if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{
    			Type: madmin.SRIAMItemGroupInfo,
    			GroupInfo: &madmin.SRGroupInfo{
    				UpdateReq: madmin.GroupAddRemove{
    					Group:    group,
    					Status:   madmin.GroupStatus(latestGroupStat.groupDesc.Status),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    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 {
    		return madmin.GroupDesc{
    			Name:      group,
    			Policy:    policy,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. 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