Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 229 for Cfg (0.02 sec)

  1. src/cmd/go/internal/work/shell.go

    			if cfg.BuildX {
    				sh.ShowCmd("", "mv %s %s", src, dst)
    			}
    			return nil
    		}
    	}
    
    	return sh.CopyFile(dst, src, perm, force)
    }
    
    // copyFile is like 'cp src dst'.
    func (sh *Shell) CopyFile(dst, src string, perm fs.FileMode, force bool) error {
    	if cfg.BuildN || cfg.BuildX {
    		sh.ShowCmd("", "cp %s %s", src, dst)
    		if cfg.BuildN {
    			return nil
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    		option.NodeType(cfg.ID),
    		option.PilotSubjectAltName(cfg.Metadata.PilotSubjectAltName),
    		option.OutlierLogPath(cfg.Metadata.OutlierLogPath),
    		option.ApplicationLogJSON(cfg.LogAsJSON),
    		option.DiscoveryHost(discHost),
    		option.Metadata(cfg.Metadata),
    		option.XdsType(xdsType),
    		option.MetadataDiscovery(bool(metadataDiscovery)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. cmd/handler-api.go

    	t.replicationMaxWorkers = cfg.ReplicationMaxWorkers
    
    	// N B api.transition_workers will be deprecated
    	if globalTransitionState != nil {
    		globalTransitionState.UpdateWorkers(cfg.TransitionWorkers)
    	}
    	t.transitionWorkers = cfg.TransitionWorkers
    
    	t.staleUploadsExpiry = cfg.StaleUploadsExpiry
    	t.staleUploadsCleanupInterval = cfg.StaleUploadsCleanupInterval
    	t.deleteCleanupInterval = cfg.DeleteCleanupInterval
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 08:13:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    					log.Debugf("Switch selected namespace policy to %s.%s (%v)", cfg.Name, cfg.Namespace, cfg.CreationTimestamp)
    					namespaceCfg = cfg
    				}
    			}
    		} else if cfg.Namespace != rootNamespace {
    			if workloadCfg == nil || cfg.CreationTimestamp.Before(&workloadCfg.CreationTimestamp) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/certs/renewal/manager_test.go

    		t.Errorf("expected ext key usage %v, got %v", expectedConfig.Usages, cfg.Usages)
    	}
    
    	if len(cfg.AltNames.IPs) != 1 || cfg.AltNames.IPs[0].String() != expectedConfig.AltNames.IPs[0].String() {
    		t.Errorf("expected SAN IPs %v, got %v", expectedConfig.AltNames.IPs, cfg.AltNames.IPs)
    	}
    
    	if len(cfg.AltNames.DNSNames) != 1 || cfg.AltNames.DNSNames[0] != expectedConfig.AltNames.DNSNames[0] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/postupgrade.go

    	// depend on centralized information from this source in the future
    	if err := uploadconfig.UploadConfiguration(cfg, client); err != nil {
    		errs = append(errs, err)
    	}
    
    	// Create the new, version-branched kubelet ComponentConfig ConfigMap
    	if err := kubeletphase.CreateConfigMap(&cfg.ClusterConfiguration, client); err != nil {
    		errs = append(errs, errors.Wrap(err, "error creating kubelet configuration ConfigMap"))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/go/main.go

    		os.Exit(2)
    	}
    	if fi, err := os.Stat(cfg.GOROOT); err != nil || !fi.IsDir() {
    		fmt.Fprintf(os.Stderr, "go: cannot find GOROOT directory: %v\n", cfg.GOROOT)
    		os.Exit(2)
    	}
    	switch strings.ToLower(cfg.GOROOT) {
    	case "/usr/local/go": // Location recommended for installation on Linux and Darwin and used by Mac installer.
    		telemetry.Inc("go/goroot:usr-local-go")
    	case "/usr/lib/go": // A typical location used by Linux package managers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/gccgo.go

    	p := a.Package
    	inc := filepath.Join(cfg.GOROOT, "pkg", "include")
    	cfile = mkAbs(p.Dir, cfile)
    	defs := []string{"-D", "GOOS_" + cfg.Goos, "-D", "GOARCH_" + cfg.Goarch}
    	defs = append(defs, b.gccArchArgs()...)
    	if pkgpath := tools.gccgoCleanPkgpath(b, p); pkgpath != "" {
    		defs = append(defs, `-D`, `GOPKGPATH="`+pkgpath+`"`)
    	}
    	compiler := envList("CC", cfg.DefaultCC(cfg.Goos, cfg.Goarch))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. 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)
Back to top