Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 699 for Configs (0.22 sec)

  1. pilot/pkg/networking/core/route/route_test.go

    		g := NewWithT(t)
    		virtualService := config.Config{
    			Meta: config.Meta{
    				GroupVersionKind: gvk.VirtualService,
    				Name:             "acme",
    			},
    			Spec: virtualServiceWithSubset,
    		}
    		cg := core.NewConfigGenTest(t, core.TestOptions{
    			Services: exampleService,
    			Configs: []config.Config{
    				virtualService,
    				{
    					Meta: config.Meta{
    						GroupVersionKind: gvk.DestinationRule,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
  2. cmd/bucket-notification-handlers.go

    			for i, queue := range config.QueueList {
    				// Remove ARN not found queues, because we previously allowed
    				// adding unexpected entries into the config.
    				//
    				// With newer config disallowing changing / turning off
    				// notification targets without removing ARN in notification
    				// configuration we won't see this problem anymore.
    				if reflect.DeepEqual(queue.ARN, arnErr.ARN) && i < len(config.QueueList) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		Services: services,
    		Configs:  []config.Config{sidecarConfig},
    	}, proxy)
    	l := xdstest.ExtractListener(model.VirtualInboundListenerName, listeners)
    	verifyFilterChainMatch(t, l)
    }
    
    func testInboundListenerConfigWithSidecarConflictPort(t *testing.T, proxy *model.Proxy, services ...*model.Service) {
    	t.Helper()
    	sidecarConfig := config.Config{
    		Meta: config.Meta{
    			Name:             "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    func sortConfigByCreationTime(configs []config.Config) {
    	sort.Slice(configs, func(i, j int) bool {
    		if configs[i].CreationTimestamp.Equal(configs[j].CreationTimestamp) {
    			in := configs[i].Namespace + "/" + configs[i].Name
    			jn := configs[j].Namespace + "/" + configs[j].Name
    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. samples/addons/loki.yaml

                timeoutSeconds: 1
              volumeMounts:
                - name: tmp
                  mountPath: /tmp
                - name: config
                  mountPath: /etc/loki/config
                - name: runtime-config
                  mountPath: /etc/loki/runtime-config
                - name: storage
                  mountPath: /var/loki
              resources:
                {}
          affinity:
            podAntiAffinity:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/common/deployment/namespace.go

    	All echo.Services
    }
    
    func (n EchoNamespace) build(b deployment.Builder, cfg Config) deployment.Builder {
    	for _, config := range cfg.Configs.Get() {
    		if config.Namespace == nil {
    			config.Namespace = n.Namespace
    		}
    		if config.Namespace.Name() == n.Namespace.Name() {
    			b = b.WithConfig(config)
    		}
    	}
    	return b
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	// Validate period
    	certsphase.CheckCertificatePeriodValidity(kubeadmconstants.CACertAndKeyBaseName, caCert)
    
    	configs, err := getKubeConfigSpecsBase(cfg)
    	if err != nil {
    		return nil, err
    	}
    	for _, spec := range configs {
    		spec.CACert = caCert
    		spec.ClientCertAuth.CAKey = caKey
    	}
    	return configs, nil
    }
    
    // buildKubeConfigFromSpec creates a kubeconfig object for the given kubeConfigSpec
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/webui.go

    	if rpt == nil {
    		return // error already reported
    	}
    
    	// Generate dot graph.
    	g, config := report.GetDOT(rpt)
    	legend := config.Labels
    	config.Labels = nil
    	dot := &bytes.Buffer{}
    	graph.ComposeDot(dot, g, &graph.DotAttributes{}, config)
    
    	// Convert to svg.
    	svg, err := dotToSvg(dot.Bytes())
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    		"downstream_rq_time,downstream_cx_tx_bytes_total,downstream_cx_rx_bytes_total,downstream_cx_total"
    )
    
    // Generate configs for the default configs used by istio.
    // If the template is updated, refresh golden files using:
    // REFRESH_GOLDEN=true go test ./pkg/bootstrap/...
    func TestGolden(t *testing.T) {
    	cases := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. pkg/test/framework/components/ambient/waypoint.go

    	if err := crd.DeployGatewayAPI(ctx); err != nil {
    		return nil, err
    	}
    
    	// TODO support multicluster
    	ik, err := istioctl.New(ctx, istioctl.Config{})
    	if err != nil {
    		return nil, err
    	}
    	// TODO: detect from UseWaypointProxy in echo.Config
    	_, _, err = ik.Invoke([]string{
    		"waypoint",
    		"apply",
    		"--namespace",
    		ns.Name(),
    		"--name",
    		name,
    		"--for",
    		constants.AllTraffic,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top