Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InitConfig (0.21 sec)

  1. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    		initConfig := data.InitCfg()
    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    		initConfig.NodeRegistration.ImagePullSerial = data.Cfg().Node.ImagePullSerial
    
    		if !data.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    	tests := map[string]struct {
    		filesToWrite  map[string]*clientcmdapi.Config
    		initConfig    *kubeadmapi.InitConfiguration
    		expectedError bool
    	}{
    		"files don't exist": {
    			initConfig:    initConfig,
    			expectedError: true,
    		},
    		"some files don't exist": {
    			filesToWrite: map[string]*clientcmdapi.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  3. cmd/config.go

    	if objAPI == nil {
    		return errInvalidArgument
    	}
    
    	return initConfig(objAPI)
    }
    
    // NewConfigSys - creates new config system object.
    func NewConfigSys() *ConfigSys {
    	return &ConfigSys{}
    }
    
    // Initialize and load config from remote etcd or local config directory
    func initConfig(objAPI ObjectLayer) (err error) {
    	bootstrapTraceMsg("load the configuration")
    	defer func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Aug 23 10:07:06 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/tasks/Copy.java

     * //for Ant filter
     * import org.apache.tools.ant.filters.ReplaceTokens
     *
     * //for including in the copy task
     * def dataContent = copySpec {
     *     from 'src/data'
     *     include '*.data'
     * }
     *
     * task initConfig(type: Copy) {
     *     from('src/main/config') {
     *         include '**/*.properties'
     *         include '**/*.xml'
     *         filter(ReplaceTokens, tokens: [version: '2.3.1'])
     *     }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssagen/ssa.go

    			ssaDump = ssaDump[:len(ssaDump)-1]
    			ssaDumpStdout = true
    		}
    		spl := strings.Split(ssaDump, ":")
    		if len(spl) > 1 {
    			ssaDump = spl[0]
    			ssaDumpCFG = spl[1]
    		}
    	}
    }
    
    func InitConfig() {
    	types_ := ssa.NewTypes()
    
    	if Arch.SoftFloat {
    		softfloatInit()
    	}
    
    	// Generate a few pointer types that are uncommon in the frontend but common in the backend.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top