Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Cfg (0.35 sec)

  1. src/net/http/h2_bundle.go

    func (t *http2Transport) newTLSConfig(host string) *tls.Config {
    	cfg := new(tls.Config)
    	if t.TLSClientConfig != nil {
    		*cfg = *t.TLSClientConfig.Clone()
    	}
    	if !http2strSliceContains(cfg.NextProtos, http2NextProtoTLS) {
    		cfg.NextProtos = append([]string{http2NextProtoTLS}, cfg.NextProtos...)
    	}
    	if cfg.ServerName == "" {
    		cfg.ServerName = host
    	}
    	return cfg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    // ValidateConfigMap tests whether required fields in the ConfigMap are set.
    func ValidateConfigMap(cfg *core.ConfigMap) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateObjectMeta(&cfg.ObjectMeta, true, ValidateConfigMapName, field.NewPath("metadata"))...)
    
    	totalSize := 0
    
    	for key, value := range cfg.Data {
    		for _, msg := range validation.IsConfigMapKey(key) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	s.pushLine(fn.Pos())
    	defer s.popLine()
    
    	s.hasdefer = fn.HasDefer()
    	if fn.Pragma&ir.CgoUnsafeArgs != 0 {
    		s.cgoUnsafeArgs = true
    	}
    	s.checkPtrEnabled = ir.ShouldCheckPtr(fn, 1)
    
    	if base.Flag.Cfg.Instrumenting && fn.Pragma&ir.Norace == 0 && !fn.Linksym().ABIWrapper() {
    		if !base.Flag.Race || !objabi.LookupPkgSpecial(fn.Sym().Pkg.Path).NoRaceFunc {
    			s.instrumentMemory = true
    		}
    		if base.Flag.Race {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                      Peers node to use the "next hop keep;" instead of "next hop self;"(default)
                      in the specific branch of the Node on "bird.cfg".
                    type: boolean
                  maxRestartTime:
                    description: Time to allow for software restart.  When specified,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-37000`](https://youtrack.jetbrains.com/issue/KT-37000) IndexOutOfBoundsException from TypeResolver on typealias with cyclic references
    - [`KT-56988`](https://youtrack.jetbrains.com/issue/KT-56988) CFG, smart casts: red in K1 -> green in K2 for invalid code
    - [`KT-62118`](https://youtrack.jetbrains.com/issue/KT-62118) FIR: "HashMap.entry" has invalid enhanced type
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top