Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 260 for Cfg (0.14 sec)

  1. cmd/kubeadm/app/util/config/initconfiguration.go

    			cfg.CRISocket = kubeadmapiv1.DefaultContainerRuntimeURLScheme + "://" + cfg.CRISocket
    		}
    	}
    
    	return nil
    }
    
    // SetAPIEndpointDynamicDefaults checks and sets configuration values for the APIEndpoint object
    func SetAPIEndpointDynamicDefaults(cfg *kubeadmapi.APIEndpoint) error {
    	// validate cfg.API.AdvertiseAddress.
    	addressIP := netutils.ParseIPSloppy(cfg.AdvertiseAddress)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 12:41:16 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func_test.go

    					Valu("b", OpConst64, cfg.config.Types.Int64, 26, nil),
    					Valu("sum", OpAdd64, cfg.config.Types.Int64, 0, nil, "a", "b"),
    					Exit("mem"))),
    			cfg.Fun("entry",
    				Bloc("entry",
    					Valu("mem", OpInitMem, types.TypeMem, 0, nil),
    					Valu("a", OpConst64, cfg.config.Types.Int64, 0, nil),
    					Valu("b", OpConst64, cfg.config.Types.Int64, 14, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:01:04 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/certs.go

    		cfg := data.Cfg()
    		cfg.CertificatesDir = data.CertificateWriteDir()
    		defer func() { cfg.CertificatesDir = data.CertificateDir() }()
    
    		// create the new certificate authority (or use existing)
    		return certsphase.CreateCACertAndKeyFiles(ca, cfg)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/discovery/token/token_test.go

    kind: Config
    preferences: {}
    users: null
    `
    	)
    
    	tests := []struct {
    		name                     string
    		tokenID                  string
    		tokenSecret              string
    		cfg                      *kubeadmapi.Discovery
    		configMap                *fakeConfigMap
    		delayedJWSSignaturePatch bool
    		expectedError            bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/common/deployment/echos.go

    func New(ctx resource.Context, cfg Config) (*Echos, error) {
    	if err := cfg.fillDefaults(ctx); err != nil {
    		return nil, err
    	}
    
    	apps := cfg.Echos
    	apps.NS = make([]EchoNamespace, len(cfg.Namespaces))
    	for i, ns := range cfg.Namespaces {
    		apps.NS[i].Namespace = ns.Get()
    	}
    	if !cfg.NoExternalNamespace {
    		apps.External.Namespace = cfg.ExternalNamespace.Get()
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/kubeadm/app/phases/certs/certs.go

    	if err != nil {
    		return err
    	}
    
    	if err := certTree.CreateTree(cfg); err != nil {
    		return errors.Wrap(err, "error creating PKI assets")
    	}
    
    	fmt.Printf("[certs] Valid certificates and keys now exist in %q\n", cfg.CertificatesDir)
    
    	// Service accounts are not x509 certs, so handled separately
    	return CreateServiceAccountKeyAndPublicKeyFiles(cfg.CertificatesDir, cfg.ClusterConfiguration.EncryptionAlgorithmType())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 05 10:17:14 UTC 2023
    - 19.4K bytes
    - Viewed (0)
Back to top