Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 147 for Validation (0.19 sec)

  1. manifests/addons/dashboards/pilot.libsonnet

              Size of each xDS push.
            |||
          ),
        ]),
      ], panelHeight=10, startY=3)
      + grid.makeGrid([
        row.new('Webhooks')
        + row.withPanels([
          panels.timeSeries.simple(
            'Validation', queries.validateWebhook, |||
              Rate of XDS push operations, by type. This is incremented on a per-proxy basis.
            |||
          ),
          panels.timeSeries.simple(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/webhook.go

    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    	// create the https server for hosting the k8s injectionWebhook handlers.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/body-multiple-params.md

    
    **FastAPI** will do the automatic conversion from the request, so that the parameter `item` receives its specific content and the same for `user`.
    
    It will perform the validation of the compound data, and will document it like that for the OpenAPI schema and automatic docs.
    
    ## Singular values in body
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/kube/factory.go

    		filename:  kubeconfigPath,
    		CLIClient: client,
    		vmSupport: vmSupport,
    		Topology:  topology,
    	}, nil
    }
    
    func validConfig(cfg cluster.Config) (cluster.Config, error) {
    	// only include kube-specific validation here
    	if cfg.Meta.String(kubeconfigMetaKey) == "" {
    		return cfg, fmt.Errorf("missing meta.%s for %s", kubeconfigMetaKey, cfg.Name)
    	}
    	return cfg, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.internal.properties.bean.PropertyWalker
    import org.gradle.internal.reflect.validation.ValidationMessageChecker
    import spock.lang.Issue
    
    import static org.hamcrest.CoreMatchers.containsString
    
    class TaskInputFilePropertiesIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/plugins/JavaGradlePluginPlugin.java

                task.setDescription(VALIDATE_PLUGIN_TASK_DESCRIPTION);
    
                task.getOutputFile().set(project.getLayout().getBuildDirectory().file("reports/plugin-development/validation-report.json"));
    
                task.getClasses().setFrom((Callable<Object>) () -> extension.getPluginSourceSet().getOutput().getClassesDirs());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 06:56:29 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/BuildTreeConfigurationCache.kt

        /**
         * Prepares to load or create a model. Does nothing if the cached model is available or else prepares to capture
         * configuration fingerprints and validation problems and then runs the given function.
         */
        fun maybePrepareModel(action: () -> Unit)
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. pkg/config/constants/constants.go

    	// load balancer, such as an Istio Gateway, is terminating the TLS.
    	CertProviderNone = "none"
    
    	// AlwaysReject is a special internal annotation that is always rejected in the validation webhook. This is used for
    	// testing the validation webhook.
    	AlwaysReject = "internal.istio.io/webhook-always-reject"
    
    	ManagedGatewayLabel               = "gateway.istio.io/managed"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	v1helper "k8s.io/kubernetes/pkg/apis/core/v1/helper"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/apis/config/validation"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/feature"
    	"k8s.io/kubernetes/pkg/scheduler/framework/plugins/names"
    	schedutil "k8s.io/kubernetes/pkg/scheduler/util"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/v1beta3/conversion.go

    func Convert_v1beta3_ClusterConfiguration_To_kubeadm_ClusterConfiguration(in *ClusterConfiguration, out *kubeadm.ClusterConfiguration, s conversion.Scope) error {
    	// Required to pass validation and fuzzer tests. These fields are missing in v1beta3, thus we have to
    	// default them to a sane (default) value in the internal type.
    	out.EncryptionAlgorithm = kubeadm.EncryptionAlgorithmRSA2048
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 8.3K bytes
    - Viewed (0)
Back to top