Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,271 for Enabled (0.14 sec)

  1. manifests/charts/istio-cni/values.yaml

        # Configure ambient settings
        ambient:
          # If enabled, ambient redirection will be enabled
          enabled: false
          # Set ambient config dir path: defaults to /etc/ambient-config
          configDir: ""
          # If enabled, and ambient is enabled, DNS redirection will be enabled
          dnsCapture: false
          # UNSTABLE: If enabled, and ambient is enabled, enables ipv6 support
          ipv6: false
    
    
        repair:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. manifests/addons/values-prometheus.yaml

    # To simplify the deployment, disable non-essential components
    alertmanager:
      enabled: false
    prometheus-pushgateway:
      enabled: false
    kube-state-metrics:
      enabled: false
    prometheus-node-exporter:
      enabled: false
    server:
      podLabels:
        sidecar.istio.io/inject: "false"
      persistentVolume:
        enabled: false
      # Use port 9090 to match Istio documentation
      service:
        servicePort: 9090
      readinessProbeInitialDelay: 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 03:42:22 UTC 2023
    - 788 bytes
    - Viewed (0)
  3. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
        /**
         * Send an exception to the user in the <b>debug</b> error level.<br>
         * The stack trace for this exception will be output when this error level is enabled.
         *
         * @param error
         */
        void debug(Throwable error);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/injection-image-distroless.yaml

    # Namespace 'enabled-namespace' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace
    ---
    # Namespace 'enabled-namespace-2' has istio injection enabled, so will be enforced.
    apiVersion: v1
    kind: Namespace
    metadata:
      labels:
        istio-injection: enabled
      name: enabled-namespace-2
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 02:55:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/DefaultFeatureFlags.java

                    return option.get();
                }
            }
            return enabled.contains(flag);
        }
    
        @Override
        public void enable(FeatureFlag flag) {
            enabled.add(flag);
        }
    
        @Override
        public boolean isEnabledWithApi(FeatureFlag flag) {
            return enabled.contains(flag);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.values.gen.yaml

        "caName": "",
        "certSigners": [],
        "configCluster": false,
        "configValidation": true,
        "defaultPodDisruptionBudget": {
          "enabled": true
        },
        "defaultResources": {
          "requests": {
            "cpu": "10m"
          }
        },
        "enabled": false,
        "externalIstiod": false,
        "hub": "gcr.io/istio-testing",
        "imagePullPolicy": "",
        "imagePullSecrets": [],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/profile-dump/output/all_off.txt

    components.base.enabled=true
    components.cni.enabled=false
    components.egressGateways[0].enabled=false
    components.egressGateways[0].name="istio-egressgateway"
    components.ingressGateways[0].enabled=true
    components.ingressGateways[0].name="istio-ingressgateway"
    components.pilot.enabled=false
    hub="gcr.io/istio-testing"
    profile="default"
    tag="latest"
    values.defaultRevision=""
    values.global.configValidation=true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 453 bytes
    - Viewed (0)
  8. internal/logger/config.go

    			cfg.AuditWebhook[target] = http.Config{
    				Enabled:  true,
    				Endpoint: url,
    			}
    		}
    
    	}
    	return cfg
    }
    
    func lookupAuditKafkaConfig(scfg config.Config, cfg Config) (Config, error) {
    	for k, kv := range config.Merge(scfg[config.AuditKafkaSubSys], EnvKafkaEnable, DefaultAuditKafkaKVS) {
    		enabledCfgVal := getCfgVal(EnvKafkaEnable, k, kv.Get(config.Enable))
    		enabled, err := config.ParseBool(enabledCfgVal)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/componentconfigs/kubelet.go

    	}
    
    	if kc.config.Authentication.Anonymous.Enabled == nil {
    		kc.config.Authentication.Anonymous.Enabled = ptr.To(kubeletAuthenticationAnonymousEnabled)
    	} else if *kc.config.Authentication.Anonymous.Enabled {
    		warnDefaultComponentConfigValue(kind, "authentication.anonymous.enabled", kubeletAuthenticationAnonymousEnabled, *kc.config.Authentication.Anonymous.Enabled)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java

            this(policy.isEnabled(), policy.getUpdatePolicy(), policy.getChecksumPolicy());
        }
    
        public ArtifactRepositoryPolicy(boolean enabled, String updatePolicy, String checksumPolicy) {
            this.enabled = enabled;
    
            if (updatePolicy == null) {
                updatePolicy = UPDATE_POLICY_DAILY;
            }
            this.updatePolicy = updatePolicy;
    
            if (checksumPolicy == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top