Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for cfgldap (0.2 sec)

  1. cmd/admin-handlers-idp-config.go

    import (
    	"context"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"strings"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	cfgldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	"github.com/minio/mux"
    	"github.com/minio/pkg/v3/ldap"
    	"github.com/minio/pkg/v3/policy"
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/configmap.go

    			errG.Go(func() error {
    				cfgMap, err := ic.getConfigMap(c, ic.configMapName())
    				if err != nil {
    					return err
    				}
    
    				cfgMap.Data["config"] = mcYAML
    				if err := ic.updateConfigMap(c, cfgMap); err != nil {
    					return err
    				}
    				scopes.Framework.Debugf("cleanup patched %s injection configmap:\n%s", c.Name(), cfgMap.Data["config"])
    				return nil
    			})
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. pkg/test/framework/config/config.go

    			}
    		}
    
    		// if the registered flag implements config.Value, and is a non-string type, we can do fancy custom parsing
    		cfgValue, isCfgVal := f.Value.(Value)
    		if cfgMap := parent.Map(key); isCfgVal && len(cfgMap) > 0 {
    			err = cfgValue.SetConfig(cfgMap)
    		} else if cfgSlice := parent.Slice(key); isCfgVal && len(cfgSlice) > 0 {
    			err = cfgValue.SetConfig(cfgSlice)
    		} else if v := parent.String(key); v != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. internal/logger/targets.go

    			consoleTgt = t
    		}
    	}
    
    	systemTargets.add(t)
    	return nil
    }
    
    func initKafkaTargets(ctx context.Context, cfgMap map[string]kafka.Config) ([]Target, []error) {
    	tgts := []Target{}
    	errs := []error{}
    	for _, l := range cfgMap {
    		if l.Enabled {
    			t := kafka.New(l)
    			tgts = append(tgts, t)
    
    			e := t.Init(ctx)
    			if e != nil {
    				errs = append(errs, e)
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation_test.go

    			vol: core.Volume{
    				Name: "cfgmap",
    				VolumeSource: core.VolumeSource{
    					ConfigMap: &core.ConfigMapVolumeSource{
    						LocalObjectReference: core.LocalObjectReference{
    							Name: "my-cfgmap",
    						},
    					},
    				},
    			},
    		}, {
    			name: "valid ConfigMap with defaultMode",
    			vol: core.Volume{
    				Name: "cfgmap",
    				VolumeSource: core.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
Back to top