Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for Configs (0.34 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			Configs := make([]config.Config, 0)
    			Configs = append(Configs, tt.gateways...)
    			Configs = append(Configs, tt.virtualServices...)
    			cg := NewConfigGenTest(t, TestOptions{
    				Configs: Configs,
    			})
    			cg.MemRegistry.WantGetProxyServiceTargets = tt.node.ServiceTargets
    			proxy := cg.SetupProxy(&proxyGateway)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    
    	configs := []config.Config{}
    	if c.destRule != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.DestinationRule,
    				Name:             "acme",
    			},
    			Spec: c.destRule,
    		})
    	}
    	if c.sidecar != nil {
    		configs = append(configs, config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.Sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

          - Could not resolve project :A.
            Creating consumable variants is explained in more detail at https://docs.gradle.org/${GradleVersion.current().version}/userguide/declaring_dependencies.html#sec:resolvable-consumable-configs.
              - Unable to find a matching variant of project :A:
                  - No variants exist.
    
    project :A FAILED
    \\--- conf
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    			t.RunTraffic(TrafficTestCase{
    				name:   "source ip " + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "useSourceIp: true"),
    				call:   c.CallOrFail,
    				opts:   callOpts,
    			})
    			t.RunTraffic(TrafficTestCase{
    				name:   "query param" + c.Config().Service,
    				config: svc + tmpl.MustEvaluate(destRule, "httpQueryParameterName: some-query-param"),
    				call:   c.CallOrFail,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. pkg/config/validation/validation_test.go

    	telemetry "istio.io/api/telemetry/v1alpha1"
    	api "istio.io/api/type/v1beta1"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/constants"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/test/util/assert"
    )
    
    const (
    	// Config name for testing
    	someName = "foo"
    	// Config namespace for testing.
    	someNamespace = "bar"
    )
    
    func TestValidateMaxServerConnectionAge(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  6. istioctl/pkg/authz/testdata/configdump.yaml

    {
     "configs": [
      {
       "@type": "type.googleapis.com/envoy.admin.v3.ListenersConfigDump",
       "version_info": "2023-06-20T09:08:58Z/4",
       "static_listeners": [
        {
         "listener": {
          "@type": "type.googleapis.com/envoy.config.listener.v3.Listener",
          "address": {
           "socket_address": {
            "address": "0.0.0.0",
            "port_value": 15090
           }
          },
          "filter_chains": [
           {
            "filters": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  7. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    istiod release: {{ .Release.Name }} rules: # permissions to verify the webhook is ready and rejecting # invalid config. We use --server-dry-run so no config is persisted. - apiGroups: ["networking.istio.io"] verbs: ["create"] resources: ["gateways"] # For storing CA secret - apiGroups: [""] resources: ["secrets"] # TODO lock this down to istio-ca-cert if not using the DNS cert mesh config verbs: ["create", "get", "watch", "list", "update", "delete"] # For status controller, so it can delete the distribution...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	if err != nil {
    		return err
    	}
    
    	// Prepare Go import config.
    	// We start it off with a comment so it can't be empty, so icfg.Bytes() below is never nil.
    	// It should never be empty anyway, but there have been bugs in the past that resulted
    	// in empty configs, which then unfortunately turn into "no config passed to compiler",
    	// and the compiler falls back to looking in pkg itself, which mostly works,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/runtime/framework_test.go

    				Filter:     config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    				PostFilter: config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    				PreScore:   config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin}}},
    				Score:      config.PluginSet{Enabled: []config.Plugin{{Name: testPlugin, Weight: 5}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/validation/validation_test.go

    				}},
    			},
    		},
    		expectedError: `spec.auditAnnotations[0].key: Invalid value: "config/@": name part must consist of alphanumeric characters`,
    	}, {
    		name: "auditAnnotations keys must be unique",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "config",
    			},
    			Spec: admissionregistration.ValidatingAdmissionPolicySpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
Back to top