Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for unpacked (0.37 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

    \n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        return success();
      }
    };
    
    // Converts tf.Unpack to a series of XLA HLO Slice ops.
    // TODO(disc): To recover static special case's performance with folding and
    // canonicalization.
    class ConvertUnpackOpDynamic : public OpRewritePattern<TF::UnpackOp> {
     public:
      using OpRewritePattern::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::UnpackOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	Probes               uint8
    	Backoff              uint8
    	Options              uint8
    	Rto                  uint32
    	Ato                  uint32
    	Snd_mss              uint32
    	Rcv_mss              uint32
    	Unacked              uint32
    	Sacked               uint32
    	Lost                 uint32
    	Retrans              uint32
    	Fackets              uint32
    	Last_data_sent       uint32
    	Last_ack_sent        uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

       ([#122724](https://github.com/kubernetes/kubernetes/pull/122724), [@nayihz](https://github.com/nayihz))
    - In the Pod API, setting the alpha `procMount` field to `Unmasked` in a container now required setting `spec.hostUsers=false` as well.
       ([#123520](https://github.com/kubernetes/kubernetes/pull/123520), [@haircommander](https://github.com/haircommander))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

    - Allowed specifying `ExternalTrafficPolicy` for `Services` with `ExternalIPs`. ([#119150](https://github.com/kubernetes/kubernetes/pull/119150), [@tnqn](https://github.com/tnqn))
    - Changed kubelet logs from `error` to `info` for uncached partitions when using CRI stats provider. ([#100448](https://github.com/kubernetes/kubernetes/pull/100448), [@saschagrunert](https://github.com/saschagrunert))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.27.md

    - Unlocked the `CSIMigrationvSphere` feature gate.
      The change allow users to continue using the in-tree vSphere driver,pending a vSphere
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  7. pkg/apis/core/types.go

    	// UnmaskedProcMount bypasses the default masking behavior of the container
    	// runtime and ensures the newly created /proc the container stays intact with
    	// no modifications.
    	UnmaskedProcMount ProcMountType = "Unmasked"
    )
    
    // SELinuxOptions are the labels to be applied to the container.
    type SELinuxOptions struct {
    	// SELinux user label
    	// +optional
    	User string
    	// SELinux role label
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    			allErrs = append(allErrs, err)
    		}
    		if hostUsers && *sc.ProcMount == core.UnmaskedProcMount {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("procMount"), sc.ProcMount, "`hostUsers` must be false to use `Unmasked`"))
    		}
    
    	}
    	allErrs = append(allErrs, validateSeccompProfileField(sc.SeccompProfile, fldPath.Child("seccompProfile"))...)
    	if sc.AllowPrivilegeEscalation != nil && !*sc.AllowPrivilegeEscalation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types.go

    	// UnmaskedProcMount bypasses the default masking behavior of the container
    	// runtime and ensures the newly created /proc the container stays in tact with
    	// no modifications.
    	UnmaskedProcMount ProcMountType = "Unmasked"
    )
    
    // SELinuxOptions are the labels to be applied to the container
    type SELinuxOptions struct {
    	// User is a SELinux user label that applies to the container.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
Back to top