Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for initOptions (0.31 sec)

  1. cmd/kubeadm/app/cmd/init.go

    	AddInitConfigFlags(cmd.Flags(), initOptions.externalInitCfg)
    	AddClusterConfigFlags(cmd.Flags(), initOptions.externalClusterCfg, &initOptions.featureGatesString)
    	AddInitOtherFlags(cmd.Flags(), initOptions)
    	initOptions.bto.AddTokenFlag(cmd.Flags())
    	initOptions.bto.AddTTLFlag(cmd.Flags())
    	options.AddImageMetaFlags(cmd.Flags(), &initOptions.externalClusterCfg.ImageRepository)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/init_test.go

    	}
    
    	// initialize an external init option and inject it to the init cmd
    	initOptions := newInitOptions()
    	initOptions.skipCRIDetect = true // avoid CRI detection in unit tests
    	initOptions.kubeconfigPath = kubeconfigPath
    	cmd := newCmdInit(nil, initOptions)
    
    	data, err := newInitData(cmd, nil, initOptions, nil)
    	if err != nil {
    		t.Fatalf("newInitData returned unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 12:26:20 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/sys/cpu/cpu_loong64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build loong64
    
    package cpu
    
    const cacheLineSize = 64
    
    func initOptions() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 242 bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/sys/cpu/cpu_wasm.go

    // We're compiling the cpu package for an unknown (software-abstracted) CPU.
    // Make CacheLinePad an empty struct and hope that the usual struct alignment
    // rules are good enough.
    
    const cacheLineSize = 0
    
    func initOptions() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 439 bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_riscv64.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build riscv64
    
    package cpu
    
    const cacheLineSize = 64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 241 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_mipsx.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips || mipsle
    
    package cpu
    
    const cacheLineSize = 32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 248 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_mips64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build mips64 || mips64le
    
    package cpu
    
    const cacheLineSize = 32
    
    func initOptions() {
    	options = []option{
    		{Name: "msa", Feature: &MIPS64X.HasMSA},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 320 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64 || ppc64le
    
    package cpu
    
    const cacheLineSize = 128
    
    func initOptions() {
    	options = []option{
    		{Name: "darn", Feature: &PPC64.HasDARN},
    		{Name: "scv", Feature: &PPC64.HasSCV},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 360 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/proc_cpuinfo_linux.go

    	if i == -1 {
    		return errors.New("no CPU features found")
    	}
    	in = in[i+len(features):]
    	if i := strings.Index(in, "\n"); i != -1 {
    		in = in[:i]
    	}
    	m := map[string]*bool{}
    
    	initOptions() // need it early here; it's harmless to call twice
    	for _, o := range options {
    		m[o.Name] = o.Feature
    	}
    	// The EVTSTRM field has alias "evstrm" in Go, but Linux calls it "evtstrm".
    	m["evtstrm"] = &ARM64.HasEVTSTRM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

        }
    
        private ExecutionResult runInitWith(BuildInitDsl dsl, String... initOptions) {
            def tasks = ['init', '--dsl', dsl.id]
            tasks.addAll(initOptions)
            run tasks
        }
    
        private ExecutionResult initFailsWith(BuildInitDsl dsl, String... initOptions) {
            def tasks = ['init', '--dsl', dsl.id]
            tasks.addAll(initOptions)
            fails(*tasks)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top