Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for newOff (0.14 sec)

  1. pkg/apis/core/validation/validation.go

    func ValidateConfigMapUpdate(newCfg, oldCfg *core.ConfigMap) field.ErrorList {
    	allErrs := field.ErrorList{}
    	allErrs = append(allErrs, ValidateObjectMetaUpdate(&newCfg.ObjectMeta, &oldCfg.ObjectMeta, field.NewPath("metadata"))...)
    
    	if oldCfg.Immutable != nil && *oldCfg.Immutable {
    		if newCfg.Immutable == nil || !*newCfg.Immutable {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (1)
  2. src/net/http/h2_bundle.go

    		serveG:                      http2newGoroutineLock(),
    		pushEnabled:                 true,
    		sawClientPreface:            opts.SawClientPreface,
    	}
    	if newf != nil {
    		newf(sc)
    	}
    
    	s.state.registerConn(sc)
    	defer s.state.unregisterConn(sc)
    
    	// The net/http package sets the write deadline from the
    	// http.Server.WriteTimeout during the TLS handshake, but then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top