Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for info2 (0.04 sec)

  1. cmd/iam.go

    	parentUsers := sys.store.GetAllParentUsers()
    	var allDistNames []string
    	for parentUser, info := range parentUsers {
    		if !sys.LDAPConfig.IsLDAPUserDN(parentUser) {
    			continue
    		}
    
    		if info.subClaimValue != "" {
    			// we need to ask LDAP about the actual user DN not normalized DN.
    			allDistNames = append(allDistNames, info.subClaimValue)
    		} else {
    			allDistNames = append(allDistNames, parentUser)
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/iam-store.go

    }
    
    func newUserIdentity(cred auth.Credentials) UserIdentity {
    	return UserIdentity{Version: 1, Credentials: cred, UpdatedAt: UTCNow()}
    }
    
    // GroupInfo contains info about a group
    type GroupInfo struct {
    	Version   int       `json:"version"`
    	Status    string    `json:"status"`
    	Members   []string  `json:"members"`
    	UpdatedAt time.Time `json:"updatedAt,omitempty"`
    }
    
    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. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	if actual.ContainersToKill != nil {
    		// Clear the message and reason fields since we don't need to verify them.
    		for k, info := range actual.ContainersToKill {
    			info.message = ""
    			info.reason = ""
    			actual.ContainersToKill[k] = info
    		}
    	}
    	assert.Equal(t, expected, actual, desc)
    }
    
    func TestComputePodActionsWithInitContainers(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    		return true
    	}
    	return false
    }
    
    func extractGatewayServices(r GatewayResources, kgw *k8s.GatewaySpec, obj config.Config, info classInfo) ([]string, *ConfigError) {
    	if IsManaged(kgw) {
    		name := model.GetOrDefault(obj.Annotations[gatewayNameOverride], getDefaultName(obj.Name, kgw, info.disableNameSuffix))
    		return []string{fmt.Sprintf("%s.%s.svc.%v", name, obj.Namespace, r.Domain)}, nil
    	}
    	gatewayServices := []string{}
    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