Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 814 for enabled (0.04 sec)

  1. internal/config/identity/openid/openid.go

    			isExplicitlyEnabled = cfgEnableVal != ""
    		)
    
    		var enabled bool
    		if isExplicitlyEnabled {
    			enabled, err = config.ParseBool(cfgEnableVal)
    			if err != nil {
    				return c, err
    			}
    			// No need to continue loading if the config is not enabled.
    			if !enabled {
    				continue
    			}
    		}
    
    		p := newProviderCfgFromConfig(getCfgVal)
    		configURL := getCfgVal(ConfigURL)
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-16 07:34
    - 17.4K bytes
    - Viewed (0)
  2. internal/logger/config.go

    		if err != nil {
    			return cfg, err
    		}
    
    		kafkaArgs := kafka.Config{
    			Enabled: enabled,
    			Brokers: brokers,
    			Topic:   getCfgVal(EnvKafkaTopic, k, kv.Get(KafkaTopic)),
    			Version: getCfgVal(EnvKafkaVersion, k, kv.Get(KafkaVersion)),
    		}
    
    		kafkaArgs.TLS.Enable = getCfgVal(EnvKafkaTLS, k, kv.Get(KafkaTLS)) == config.EnableOn
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-02-18 16:25
    - 18.7K bytes
    - Viewed (0)
  3. manifests/charts/istio-cni/values.yaml

        configDir: ""
        # If enabled, and ambient is enabled, DNS redirection will be enabled
        dnsCapture: true
        # If enabled, and ambient is enabled, enables ipv6 support
        ipv6: true
        # If enabled, and ambient is enabled, the CNI agent will reconcile incompatible iptables rules and chains at startup.
        # This will eventually be enabled by default
        reconcileIptablesOnStartup: false
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-05-07 01:49
    - 6.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/values.yaml

        injectionCABundle: ""
      telemetry:
        enabled: true
        v2:
          # For Null VM case now.
          # This also enables metadata exchange.
          enabled: true
          # Indicate if prometheus stats filter is enabled or not
          prometheus:
            enabled: true
          # stackdriver filter settings.
          stackdriver:
            enabled: false
    Registered: 2025-05-28 22:53
    - Last Modified: 2025-04-15 15:45
    - 22.1K bytes
    - Viewed (0)
  5. internal/config/notify/parse.go

    			Immediate:         env.Get(immediateEnv, kv.Get(target.AmqpImmediate)) == config.EnableOn,
    			Durable:           env.Get(durableEnv, kv.Get(target.AmqpDurable)) == config.EnableOn,
    			Internal:          env.Get(internalEnv, kv.Get(target.AmqpInternal)) == config.EnableOn,
    			NoWait:            env.Get(noWaitEnv, kv.Get(target.AmqpNoWait)) == config.EnableOn,
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-27 04:30
    - 47.5K bytes
    - Viewed (0)
  6. internal/config/callhome/callhome.go

    type Config struct {
    	// Flag indicating whether callhome is enabled.
    	Enable bool `json:"enable"`
    
    	// The interval between callhome cycles
    	Frequency time.Duration `json:"frequency"`
    }
    
    var configLock sync.RWMutex
    
    // Enabled - indicates if callhome is enabled or not
    func (c *Config) Enabled() bool {
    	configLock.RLock()
    	defer configLock.RUnlock()
    
    	return c.Enable
    }
    
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-05-24 23:05
    - 2.6K bytes
    - Viewed (0)
  7. cmd/config-current.go

    		callhomeCfg, err := callhome.LookupConfig(s[config.CallhomeSubSys][config.Default])
    		if err != nil {
    			configLogIf(ctx, fmt.Errorf("Unable to load callhome config: %w", err))
    		} else {
    			enable := callhomeCfg.Enable && !globalCallhomeConfig.Enabled()
    			globalCallhomeConfig.Update(callhomeCfg)
    			if enable {
    				initCallhome(ctx, objAPI)
    			}
    		}
    	case config.DriveSubSys:
    Registered: 2025-05-25 19:28
    - Last Modified: 2025-04-21 16:23
    - 28.4K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/_helpers.tpl

    {{/* Default Prometheus is enabled if its enabled and there are no config overrides set */}}
    {{ define "default-prometheus" }}
    {{- and
      (not .Values.meshConfig.defaultProviders)
      .Values.telemetry.enabled .Values.telemetry.v2.enabled .Values.telemetry.v2.prometheus.enabled
    }}
    {{- end }}
    
    {{/* SD has metrics and logging split. Default metrics are enabled if SD is enabled */}}
    {{ define "default-sd-metrics" }}
    {{- and
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-08-13 21:45
    - 818 bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.14.tgz

    https://kubernetes.io/docs/user-guide/node-selection/ ## nodeSelector: {} tolerations: [] affinity: {} topologySpreadConstr: [] ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 fsGroupChangePolicy: "OnRootMismatch" # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ##...
    Registered: 2025-05-25 19:28
    - Last Modified: 2023-09-30 20:46
    - 20.6K bytes
    - Viewed (0)
  10. helm-releases/minio-5.0.15.tgz

    https://kubernetes.io/docs/user-guide/node-selection/ ## nodeSelector: {} tolerations: [] affinity: {} topologySpreadConstr: [] ## Add stateful containers to have security context, if enabled MinIO will run as this ## user and group NOTE: securityContext is only enabled if persistence.enabled=true securityContext: enabled: true runAsUser: 1000 runAsGroup: 1000 fsGroup: 1000 fsGroupChangePolicy: "OnRootMismatch" # Additational pod annotations podAnnotations: {} # Additional pod labels podLabels: {} ##...
    Registered: 2025-05-25 19:28
    - Last Modified: 2024-01-12 18:18
    - 20.8K bytes
    - Viewed (0)
Back to top