Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for config1 (0.27 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    		lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    		s.store(types.Types[types.TINT], lenAddr, len)
    	case t.IsSlice():
    		if skip&skipLen == 0 {
    			len := s.newValue1(ssa.OpSliceLen, types.Types[types.TINT], right)
    			lenAddr := s.newValue1I(ssa.OpOffPtr, s.f.Config.Types.IntPtr, s.config.PtrSize, left)
    			s.store(types.Types[types.TINT], lenAddr, len)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - JWT authenticator config set via the --authentication-config flag is now dynamically reloaded as the file changes on disk. ([#123525](https://github.com/kubernetes/kubernetes/pull/123525), [@enj](https://github.com/enj)) [SIG API Machinery, Auth and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // +optional
      optional NodeConfigSource active = 2;
    
      // LastKnownGood reports the checkpointed config the node will fall back to
      // when it encounters an error attempting to use the Assigned config.
      // The Assigned config becomes the LastKnownGood config when the node determines
      // that the Assigned config is stable and correct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types.go

    	// Assigned config results in an error.
    	// +optional
    	Active *NodeConfigSource `json:"active,omitempty" protobuf:"bytes,2,opt,name=active"`
    	// LastKnownGood reports the checkpointed config the node will fall back to
    	// when it encounters an error attempting to use the Assigned config.
    	// The Assigned config becomes the LastKnownGood config when the node determines
    	// that the Assigned config is stable and correct.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

    - `kubeadm`: added a new "kubeadm config validate" command that can be used to
      validate any input config file. Use the `--config` flag to pass a config file
      to it. See the command `--help` screen for more information. As a result of adding
      this new command, enhance the validation capabilities of the existing "kubeadm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.25.md

    kubelet related ConfigMap and RBAC rules are now locked to have a simplified naming `*kubelet-config` instead of the legacy naming `*kubelet-config-x.yy`, where `x.yy` was the version of the control plane. If you have previously used the old naming format with `UnversionedKubeletConfigMap=false`, you must manually copy the config map from `kube-system/kubelet-config-x.yy` to `kube-system/kubelet-config` before upgrading to `v1.25`. ([#110327](https://github.com/kubernetes/kubernetes/pull/110327),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    * 🔧 Fix Type hint of `auto_error` which does not need to be `Optional[bool]`. PR [#4933](https://github.com/tiangolo/fastapi/pull/4933) by [@DavidKimDY](https://github.com/DavidKimDY).
    * 🔧 Update mypy config, use `strict = true` instead of manual configs. PR [#4605](https://github.com/tiangolo/fastapi/pull/4605) by [@michaeloliverx](https://github.com/michaeloliverx).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    i=="string"||i instanceof String}function ms(i){return xi(i)&&i.config===void 0&&!r0(i)?null:xi(i)&&i.config!==void 0&&ef(i.config)?Z.resolve(i.config):xi(i)&&i.config!==void 0&&xi(i.config)?null:ef(i)?Z.resolve(i):i0()}function i0(){for(let i of t0)try{let e=Z.resolve(i);return te.accessSync(e),e}catch(e){}return null}var t0,tf=C(()=>{l();je();gt();t0=["./tailwind.config.js","./tailwind.config.cjs","./tailwind.config.mjs","./tailwind.config.ts"]});var rf={};Ae(rf,{default:()=>gs});var gs,ys=C(()=>{l...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. pkg/apis/core/validation/validation.go

    	}
    	return allErrors
    }
    
    func validateClientIPAffinityConfig(config *core.SessionAffinityConfig, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if config == nil {
    		allErrs = append(allErrs, field.Required(fldPath, fmt.Sprintf("when session affinity type is %s", core.ServiceAffinityClientIP)))
    		return allErrs
    	}
    	if config.ClientIP == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. src/net/http/h2_bundle.go

    	// If both are set, DialTLSContext takes priority.
    	DialTLS func(network, addr string, cfg *tls.Config) (net.Conn, error)
    
    	// TLSClientConfig specifies the TLS configuration to use with
    	// tls.Client. If nil, the default configuration is used.
    	TLSClientConfig *tls.Config
    
    	// ConnPool optionally specifies an alternate connection pool to use.
    	// If nil, the default is used.
    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