Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 229 for Cfg (0.39 sec)

  1. src/cmd/go/internal/cfg/cfg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package cfg holds configuration shared by multiple parts
    // of the go command.
    package cfg
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    	"go/build"
    	"internal/buildcfg"
    	"internal/cfg"
    	"io"
    	"os"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"sync"
    
    	"cmd/go/internal/fsys"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/driver.go

    	addFilter("tagignore", cfg.TagIgnore)
    	addFilter("tagshow", cfg.TagShow)
    	addFilter("taghide", cfg.TagHide)
    
    	ropt := &report.Options{
    		CumSort:      cfg.Sort == "cum",
    		CallTree:     cfg.CallTree,
    		DropNegative: cfg.DropNegative,
    
    		CompactLabels: cfg.CompactLabels,
    		Ratio:         1 / cfg.DivideBy,
    
    		NodeCount:    cfg.NodeCount,
    		NodeFraction: cfg.NodeFraction,
    		EdgeFraction: cfg.EdgeFraction,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. internal/config/notify/legacy.go

    			Value: cfg.DSN,
    		},
    		config.KV{
    			Key:   target.MySQLTable,
    			Value: cfg.Table,
    		},
    		config.KV{
    			Key:   target.MySQLHost,
    			Value: cfg.Host.String(),
    		},
    		config.KV{
    			Key:   target.MySQLPort,
    			Value: cfg.Port,
    		},
    		config.KV{
    			Key:   target.MySQLUsername,
    			Value: cfg.User,
    		},
    		config.KV{
    			Key:   target.MySQLPassword,
    			Value: cfg.Password,
    		},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/init.go

    		`Specify a stable IP address or DNS name for the control plane.`,
    	)
    
    	options.AddKubernetesVersionFlag(flagSet, &cfg.KubernetesVersion)
    
    	flagSet.StringVar(
    		&cfg.CertificatesDir, options.CertificatesDir, cfg.CertificatesDir,
    		`The path where to save and store the certificates.`,
    	)
    	flagSet.StringSliceVar(
    		&cfg.APIServer.CertSANs, options.APIServerCertSANs, cfg.APIServer.CertSANs,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/capture/run.go

    		}
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpInbound, constants.PREROUTING, table, "-p", constants.TCP,
    			"-j", constants.ISTIOINBOUND)
    
    		if cfg.cfg.InboundPortsInclude == "*" {
    			// Apply any user-specified port exclusions.
    			if cfg.cfg.InboundPortsExclude != "" {
    				for _, port := range split(cfg.cfg.InboundPortsExclude) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. internal/config/api/api.go

    	if err != nil {
    		return cfg, err
    	}
    
    	cfg.RequestsMax = requestsMax
    	if requestsMax < 0 {
    		return cfg, errors.New("invalid API max requests value")
    	}
    
    	requestsDeadline, err := time.ParseDuration(env.Get(EnvAPIRequestsDeadline, kvs.GetWithDefault(apiRequestsDeadline, DefaultKVS)))
    	if err != nil {
    		return cfg, err
    	}
    	cfg.RequestsDeadline = requestsDeadline
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/kube.go

    	}
    
    	if cfg.GatewayValues != "" {
    		i.gatewayIOP.file = filepath.Join(workDir, "custom_gateways.yaml")
    		_, err = initIOPFile(cfg, i.gatewayIOP.file, cfg.GatewayValues)
    		if err != nil {
    			return iopFiles{}, err
    		}
    	}
    	if cfg.EastWestGatewayValues != "" {
    		i.eastwestIOP.file = filepath.Join(workDir, "eastwest.yaml")
    		_, err = initIOPFile(cfg, i.eastwestIOP.file, cfg.EastWestGatewayValues)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/etcd/local.go

    		{Name: "data-dir", Value: cfg.Etcd.Local.DataDir},
    		{Name: "cert-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerCertName)},
    		{Name: "key-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdServerKeyName)},
    		{Name: "trusted-ca-file", Value: filepath.Join(cfg.CertificatesDir, kubeadmconstants.EtcdCACertName)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  9. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOOS", Value: cfg.Goos, Changed: cfg.Goos != runtime.GOOS},
    		{Name: "GOPATH", Value: cfg.BuildContext.GOPATH, Changed: cfg.GOPATHChanged},
    		{Name: "GOPRIVATE", Value: cfg.GOPRIVATE},
    		{Name: "GOPROXY", Value: cfg.GOPROXY, Changed: cfg.GOPROXYChanged},
    		{Name: "GOROOT", Value: cfg.GOROOT},
    		{Name: "GOSUMDB", Value: cfg.GOSUMDB, Changed: cfg.GOSUMDBChanged},
    		{Name: "GOTMPDIR", Value: cfg.Getenv("GOTMPDIR")},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client_test.go

    			if _, err := store.(*Client).Patch(*cfg, func(cfg config.Config) (config.Config, types.PatchType) {
    				cfg.Annotations["fizz"] = "buzz"
    				patchedCfg = cfg
    				return cfg, types.JSONPatchType
    			}); err != nil {
    				t.Errorf("unexpected err in Patch: %v", err)
    			}
    			// validate it is updated
    			retry.UntilSuccessOrFail(t, func() error {
    				cfg := store.Get(r.GroupVersionKind(), configName, configMeta.Namespace)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top