Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 210 for Cfg (0.05 sec)

  1. security/pkg/nodeagent/sds/sdsservice.go

    		Name: s.ResourceName,
    	}
    	var cfg security.SdsCertificateConfig
    	ok := false
    	if s.ResourceName == security.FileRootSystemCACert {
    		cfg, ok = security.SdsCertificateConfigFromResourceNameForOSCACert(caRootPath)
    	} else {
    		cfg, ok = security.SdsCertificateConfigFromResourceName(s.ResourceName)
    	}
    	if s.ResourceName == security.RootCertReqResourceName || (ok && cfg.IsRootCertificate()) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                        private Configuration createBaseConfiguration(Project project) {
                            return project.getConfigurations().create("$TRANSFORM_SOURCE_CONFIGURATION", cfg -> {
                                cfg.setCanBeConsumed(false);
                                cfg.setCanBeResolved(true);
                            });
                        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. tests/integration/pilot/headers_test.go

    func TestProxyHeaders(t *testing.T) {
    	framework.NewTest(t).
    		RequireIstioVersion("1.19").
    		Run(func(t framework.TestContext) {
    			ns := namespace.NewOrFail(t, t, namespace.Config{Prefix: "proxy-headers", Inject: true})
    			cfg := echo.Config{
    				Namespace: ns,
    				Ports:     ports.All(),
    				Service:   "no-headers",
    				Subsets: []echo.SubsetConfig{
    					{
    						Annotations: map[string]string{annotation.ProxyConfig.Name: `
    tracing: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_test.go

    		cases := []struct {
    			name     string
    			p        *model.Proxy
    			cfg      []config.Config
    			services []*model.Service
    		}{
    			{
    				name:     "simple",
    				p:        p,
    				services: []*model.Service{svc},
    			},
    			{
    				name:     "sidecar with service",
    				p:        p,
    				services: []*model.Service{svc},
    				cfg:      []config.Config{sidecarConfig},
    			},
    			{
    				name:     "sidecar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  5. tests/integration/ambient/main_test.go

    			t.Settings().Ambient = true
    			return nil
    		}).
    		Setup(istio.Setup(&i, func(ctx resource.Context, cfg *istio.Config) {
    			// can't deploy VMs without eastwest gateway
    			ctx.Settings().SkipVMs()
    			cfg.EnableCNI = true
    			cfg.DeployEastWestGW = false
    			cfg.ControlPlaneValues = `
    values:
      cni:
        # The CNI repair feature is disabled for these tests because this is a controlled environment,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/server.go

    	if err != nil {
    		return nil, fmt.Errorf("error initializing kube client: %w", err)
    	}
    
    	cfg := &iptables.Config{
    		RestoreFormat: true,
    		RedirectDNS:   args.DNSCapture,
    		EnableIPv6:    args.EnableIPv6,
    	}
    
    	log.Debug("creating ipsets in the node netns")
    	set, err := createHostsideProbeIpset(cfg.EnableIPv6)
    	if err != nil {
    		return nil, fmt.Errorf("error initializing hostside probe ipset: %w", err)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    	globalCompressConfigMu.Lock()
    	cfg := globalCompressConfig
    	globalCompressConfigMu.Unlock()
    
    	return !excludeForCompression(header, object, cfg)
    }
    
    // Eliminate the non-compressible objects.
    func excludeForCompression(header http.Header, object string, cfg compress.Config) bool {
    	objStr := object
    	contentType := header.Get(xhttp.ContentType)
    	if !cfg.Enabled {
    		return true
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/preflight.go

    	if err := preflight.RunJoinNodeChecks(utilsexec.New(), j.Cfg(), j.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	initCfg, err := j.InitCfg()
    	if err != nil {
    		return err
    	}
    
    	// Continue with more specific checks based on the init configuration
    	klog.V(1).Infoln("[preflight] Running configuration dependant checks")
    	if j.Cfg().ControlPlane != nil {
    		// Checks if the cluster configuration supports
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. src/time/time_test.go

    		t := UnixMilli(msec)
    		return t.UnixMilli() == msec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    func TestUnixMicro(t *testing.T) {
    	f := func(usec int64) bool {
    		t := UnixMicro(usec)
    		return t.UnixMicro() == usec
    	}
    	cfg := &quick.Config{MaxCount: 10000}
    	if err := quick.Check(f, cfg); err != nil {
    		t.Fatal(err)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/conversion.go

    				continue
    			}
    			if cfg := routeMap[routeKey][h]; cfg != nil {
    				// merge http routes
    				vs := cfg.Spec.(*istio.VirtualService)
    				vs.Http = append(vs.Http, routes...)
    				// append parents
    				cfg.Annotations[constants.InternalParentNames] = fmt.Sprintf("%s,%s/%s.%s",
    					cfg.Annotations[constants.InternalParentNames], obj.GroupVersionKind.Kind, obj.Name, obj.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top