Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for IsSame (0.11 sec)

  1. CHANGELOG/CHANGELOG-1.17.md

    ### Storage
    - Bump CSI version to 1.2.0 ([#84832](https://github.com/kubernetes/kubernetes/pull/84832), [@gnufied](https://github.com/gnufied))
    - CSI Migration: Fixes issue where all volumes with the same inline volume inner spec name were staged in the same path. Migrated inline volumes are now staged at a unique path per unique volume. ([#84754](https://github.com/kubernetes/kubernetes/pull/84754), [@davidz627](https://github.com/davidz627))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 28 10:44:33 UTC 2021
    - 346.2K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	allErrors := field.ErrorList{}
    	osName := core.Linux
    	if podOS != nil {
    		osName = podOS.Name
    	}
    	for i, containerStatus := range containerStatuses {
    		if containerStatus.User == nil {
    			continue
    		}
    		containerUser := containerStatus.User
    		switch osName {
    		case core.Windows:
    			if containerUser.Linux != 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)
  3. CHANGELOG/CHANGELOG-1.18.md

    - Reverts breaking change to inline AzureFile volumes in v1.18.15-v1.18.17; referenced secrets are now correctly searched for in the same namespace as the pod as in previous releases. ([#100397](https://github.com/kubernetes/kubernetes/pull/100397), [@andyzhangx](https://github.com/andyzhangx)) [SIG Cloud Provider and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 16 17:18:28 UTC 2021
    - 373.2K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Fixed a regression in the pod binding subresource to honor the `metadata.uid` precondition.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  5. pkg/apis/core/v1/zz_generated.conversion.go

    	return autoConvert_url_Values_To_v1_PodLogOptions(in, out, s)
    }
    
    func autoConvert_v1_PodOS_To_core_PodOS(in *v1.PodOS, out *core.PodOS, s conversion.Scope) error {
    	out.Name = core.OSName(in.Name)
    	return nil
    }
    
    // Convert_v1_PodOS_To_core_PodOS is an autogenerated conversion function.
    func Convert_v1_PodOS_To_core_PodOS(in *v1.PodOS, out *core.PodOS, s conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. ChangeLog.md

    - [`KT-61718`](https://youtrack.jetbrains.com/issue/KT-61718) Forbid unsound code with self upper bounds and captured types
    - [`KT-54607`](https://youtrack.jetbrains.com/issue/KT-54607) Can't use same function if having multiple instances of same subtype in same `when`-statement
    - [`KT-27252`](https://youtrack.jetbrains.com/issue/KT-27252) Smart cast in when on a sealed class depends on the order of "is" checks
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

      - 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.
      - A server-side apply request that makes unrelated changes to an object which has duplicate items in a keyed list no longer fails, and leaves the existing duplicate items as-is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

            loc, pooled_type, pooled, divisor, scalar_broadcast_dims);
      } else {
        assert(op.getPadding() == "SAME");
        // For SAME padding, only original entries that contributed to a window
        // are counted for the average of this window, not padded entries.
    
        // Build all-ones tensor of same shape as the original input.
        ElementsAttr splat = hlo::getSplat(&rewriter, orig_input_type, 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top