Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for applyTo (0.22 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - Fixed bugs in handling of server-side apply, create, and update API requests for objects containing duplicate items in keyed lists.
      - A `create` or `update` API request with duplicate items in a keyed list no longer wipes out managedFields. Examples include env var entries with the same name, or port entries with the same containerPort in a pod spec.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    accurately and efficiently track set membership across `apply` operations. The format used for `ApplySet` is set out in  [KEP 3659](https://github.com/kubernetes/enhancements/issues/3659) as a low-level specification.  Other tools in the ecosystem can also build on this specification for improved interoperability.  To try the ApplySet-based pruning alpha, set `KUBECTL_APPLYSET=true` and use the flags `--prune --applyset=secret-name` with `kubectl apply`. ([#116205](https://github.com/kubernetes/kubernetes/pull/116205),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    * `dependencies`: to include ✨ top-level dependencies ✨ that apply to the whole application. E.g. to add global authentication.
    * `callbacks`: OpenAPI callbacks that apply to all the *path operations*.
    * `deprecated`: to mark all the *path operations* as deprecated. 🤷
    * `include_in_schema`: to allow excluding all the *path operations* from the OpenAPI schema.
    * `responses`: OpenAPI responses that apply to all the *path operations*.
    
    For example:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          Value y_out = bn_train_op.getResult(0);
          Value batch_mean = bn_train_op.getResult(1);
          Value reserve_space_1 = batch_mean;
          Value batch_variance = bn_train_op.getResult(2);
    
          // Apply Bessel's correction on the variance.
          int total_input_size = bn_train_input_type_tensor.getNumElements();
          int total_scale_size = scale_type_tensor.getNumElements();
          int sample_size =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.30.md

    ## Changelog since v1.29.0
    
    ## Changes by Kind
    
    ### Deprecation
    
    - kubectl: Removed the deprecated flag `prune-whitelist` for apply. Please use the flag `prune-allowlist` instead.
       ([#120246](https://github.com/kubernetes/kubernetes/pull/120246), [@pacoxu](https://github.com/pacoxu))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    	} else {
    		mem := s.newValue3I(ssa.OpPanicBounds, types.TypeMem, int64(kind), idx, len, s.mem())
    		s.endBlock().SetControl(mem)
    	}
    	s.startBlock(bNext)
    
    	// In Spectre index mode, apply an appropriate mask to avoid speculative out-of-bounds accesses.
    	if base.Flag.Cfg.SpectreIndex {
    		op := ssa.OpSpectreIndex
    		if kind != ssa.BoundsIndex && kind != ssa.BoundsIndexU {
    			op = ssa.OpSpectreSliceIndex
    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