Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 307 for Cfg (0.03 sec)

  1. pilot/pkg/model/extensions.go

    			case extensions.EnvValueSource_INLINE:
    				cfg.VmConfig.EnvironmentVariables.KeyValues[e.Name] = e.Value
    			case extensions.EnvValueSource_HOST:
    				hostEnvKeys = append(hostEnvKeys, e.Name)
    			}
    		}
    		cfg.VmConfig.EnvironmentVariables.HostEnvKeys = hostEnvKeys
    	}
    
    	return cfg
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    			return
    		}
    	}
    }
    
    func (a *Agent) initLocalDNSServer() (err error) {
    	// we don't need dns server on gateways
    	if a.cfg.DNSCapture && a.cfg.ProxyType == model.SidecarProxy {
    		if a.localDNSServer, err = dnsClient.NewLocalDNSServer(a.cfg.ProxyNamespace, a.cfg.ProxyDomain, a.cfg.DNSAddr,
    			a.cfg.DNSForwardParallel); err != nil {
    			return err
    		}
    		a.localDNSServer.StartDNS()
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/clean/clean.go

    					base.Error(err)
    				}
    			}
    		}
    	}
    
    	if cleanModcache {
    		if cfg.GOMODCACHE == "" {
    			base.Fatalf("go: cannot clean -modcache without a module cache")
    		}
    		if cfg.BuildN || cfg.BuildX {
    			sh.ShowCmd("", "rm -rf %s", cfg.GOMODCACHE)
    		}
    		if !cfg.BuildN {
    			if err := modfetch.RemoveAll(cfg.GOMODCACHE); err != nil {
    				base.Error(err)
    			}
    		}
    	}
    
    	if cleanFuzzcache {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceentry/conversion.go

    	// in SE. Used for multi-network support.
    	return cfg
    }
    
    // convertServices transforms a ServiceEntry config to a list of internal Service objects.
    func convertServices(cfg config.Config) []*model.Service {
    	serviceEntry := cfg.Spec.(*networking.ServiceEntry)
    	creationTime := cfg.CreationTimestamp
    
    	var resolution model.Resolution
    	switch serviceEntry.Resolution {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/namespace/kube.go

    func createNamespaceLabels(ctx resource.Context, cfg Config) map[string]string {
    	l := make(map[string]string)
    	l["istio-testing"] = "istio-test"
    	if cfg.Inject {
    		// do not add namespace labels when running compatibility tests since
    		// this disables the necessary object selectors
    		if !ctx.Settings().Compatibility {
    			if cfg.Revision != "" {
    				l[label.IoIstioRev.Name] = cfg.Revision
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/setup_test.go

    		Setup(testRegistrySetup).
    		Setup(SetupSuite).
    		Run()
    }
    
    func setupConfig(_ resource.Context, cfg *istio.Config) {
    	if cfg == nil {
    		return
    	}
    	cfg.ControlPlaneValues = `
    meshConfig:
      accessLogFile: "" # disable from install, we will enable via Telemetry layer
    `
    	cfg.RemoteClusterValues = cfg.ControlPlaneValues
    	cfg.Values["global.logging.level"] = "xdsproxy:debug,wasm:debug"
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    		} else {
    			modRoots = []string{modRoot}
    		}
    	}
    	if cfg.ModFile != "" && !strings.HasSuffix(cfg.ModFile, ".mod") {
    		base.Fatalf("go: -modfile=%s: file does not have .mod extension", cfg.ModFile)
    	}
    
    	// We're in module mode. Set any global variables that need to be set.
    	cfg.ModulesEnabled = true
    	setDefaultBuildMod()
    	list := filepath.SplitList(cfg.BuildContext.GOPATH)
    	if len(list) > 0 && list[0] != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/multiplecontrolplanes/main_test.go

    		})).
    		Setup(istio.Setup(nil, func(ctx resource.Context, cfg *istio.Config) {
    			s := ctx.Settings()
    			// TODO test framework has to be enhanced to use istioNamespace in istioctl commands used for VM config
    			s.SkipWorkloadClasses = append(s.SkipWorkloadClasses, echo.VM)
    
    			cfg.Values["global.istioNamespace"] = userGroup2NS.Name()
    			cfg.SystemNamespace = userGroup2NS.Name()
    			cfg.ControlPlaneValues = fmt.Sprintf(`
    namespace: %s
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    		return cfg.Goos + "/" + cfg.Goarch
    	}
    
    	// Some build modes always require external linking.
    	switch cfg.BuildBuildmode {
    	case "c-shared", "plugin":
    		return "-buildmode=" + cfg.BuildBuildmode
    	}
    
    	// Using -linkshared always requires external linking.
    	if cfg.BuildLinkshared {
    		return "-linkshared"
    	}
    
    	// Decide whether we are building a PIE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. tests/integration/pilot/tcp_probe_test.go

    ) {
    	ctx.Helper()
    
    	var tcpProbe echo.Instance
    	cfg := echo.Config{
    		Namespace:        ns,
    		Service:          name,
    		ReadinessTCPPort: "1234",
    		Subsets: []echo.SubsetConfig{
    			{
    				Annotations: map[string]string{annotation.SidecarRewriteAppHTTPProbers.Name: strconv.FormatBool(rewrite)},
    			},
    		},
    	}
    
    	if openPort {
    		cfg.Ports = []echo.Port{{
    			Name:         "readiness-tcp-port",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top