Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for Cfg (0.04 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.AnonymousObjectExpressionExitNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.CFGNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.CFGNodeWithSubgraphs
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.ControlFlowGraph
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.DelegateExpressionExitNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.ElvisExitNode
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/kubelet.go

    		kc.config.ClusterDomain = cfg.Networking.DNSDomain
    	} else if cfg.Networking.DNSDomain != "" && kc.config.ClusterDomain != cfg.Networking.DNSDomain {
    		warnDefaultComponentConfigValue(kind, "clusterDomain", cfg.Networking.DNSDomain, kc.config.ClusterDomain)
    	}
    
    	// Require all clients to the kubelet API to have client certs signed by the cluster CA
    	clientCAFile := filepath.Join(cfg.CertificatesDir, constants.CACertName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/crypto/tls/bogo_shim_test.go

    			alpnLen := int(alpns[0])
    			cfg.NextProtos = append(cfg.NextProtos, alpns[1:1+alpnLen])
    			alpns = alpns[alpnLen+1:]
    		}
    	}
    
    	if *hostName != "" {
    		cfg.ServerName = *hostName
    	}
    
    	if *keyfile != "" || *certfile != "" {
    		pair, err := LoadX509KeyPair(*certfile, *keyfile)
    		if err != nil {
    			log.Fatalf("load key-file err: %s", err)
    		}
    		cfg.Certificates = []Certificate{pair}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks.go

    	}
    	checks = addCommonChecks(execer, "", &cfg.NodeRegistration, checks)
    	if cfg.ControlPlane == nil {
    		checks = append(checks, FileAvailableCheck{Path: cfg.CACertPath})
    	}
    
    	if cfg.Discovery.BootstrapToken != nil {
    		ipstr, _, err := net.SplitHostPort(cfg.Discovery.BootstrapToken.APIServerEndpoint)
    		if err == nil {
    			checks = append(checks,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  5. pkg/test/framework/components/environment/kube/settings.go

    	out := []cluster.Config{}
    	for _, cfg := range configs {
    		if kube >= len(kubeconfigs) {
    			// not enough to cover all clusters in file
    			return nil, fmt.Errorf("istio.test.kube.cfg should have a kubeconfig for each kube cluster")
    		}
    		if cfg.Meta == nil {
    			cfg.Meta = config.Map{}
    		}
    		cfg.Meta["kubeconfig"] = kubeconfigs[kube]
    
    		kube++
    		out = append(out, cfg)
    	}
    	if kube < len(kubeconfigs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    func (b *Builder) ccExe() []string {
    	return envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    }
    
    // cxxExe returns the CXX compiler setting without all the extra flags we add implicitly.
    func (b *Builder) cxxExe() []string {
    	return envList("CXX", cfg.DefaultCXX(cfg.Goos, cfg.Goarch))
    }
    
    // fcExe returns the FC compiler setting without all the extra flags we add implicitly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/stacks.go

    func (ui *webInterface) stackView(w http.ResponseWriter, req *http.Request) {
    	// Get all data in a report.
    	rpt, errList := ui.makeReport(w, req, []string{"svg"}, func(cfg *config) {
    		cfg.CallTree = true
    		cfg.Trim = false
    		cfg.Granularity = "filefunctions"
    	})
    	if rpt == nil {
    		return // error already reported
    	}
    
    	// Make stack data and generate corresponding JSON.
    	stacks := rpt.Stacks()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top