Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for applyTo (0.17 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// fsType to mount. Ex. "ext4", "xfs", "ntfs".
    	// If not provided, the empty value is passed to the associated CSI driver
    	// which will determine the default filesystem to apply.
    	// +optional
    	FSType *string `json:"fsType,omitempty" protobuf:"bytes,3,opt,name=fsType"`
    
    	// volumeAttributes stores driver-specific properties that are passed to the CSI
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	DeletePods bool `protobuf:"varint,7,opt,name=deletePods,proto3" json:"deletePods,omitempty"`
    	// The label key to apply to a broken pod when the controller is in labelPods mode.
    	BrokenPodLabelKey string `protobuf:"bytes,8,opt,name=brokenPodLabelKey,proto3" json:"brokenPodLabelKey,omitempty"`
    	// The label value to apply to a broken pod when the controller is in labelPods mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	}
    	for i, ctr := range containers {
    		idxPath := fldPath.Index(i)
    
    		// Apply the validation common to all container types
    		allErrs = append(allErrs, validateContainerCommon(&ctr, volumes, podClaimNames, idxPath, opts, podRestartPolicy, hostUsers)...)
    
    		restartAlways := false
    		// Apply the validation specific to init containers
    		if ctr.RestartPolicy != 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)
  6. CHANGELOG/CHANGELOG-1.15.md

    - `kubeadm alpha certs renew` and `kubeadm upgrade` now supports renewal of certificates embedded in KubeConfig files managed by kubeadm; this does not apply to certificates signed by external CAs.  ([#77180](https://github.com/kubernetes/kubernetes/pull/77180), [@fabriziopandini](https://github.com/fabriziopandini))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-64233`](https://youtrack.jetbrains.com/issue/KT-64233) K2: K1/K2: ensure JVM ABI consistency for quality gates projects
    - [`KT-63535`](https://youtrack.jetbrains.com/issue/KT-63535) K2: Apply DFA implications for nullable Nothing to both sides
    - [`KT-63413`](https://youtrack.jetbrains.com/issue/KT-63413) K2 / kotlinx-atomicfu: "IllegalStateException: Expected some types"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    * The boostrapped RBAC role and rolebinding for the `cloud-provider` service account is now deprecated. If you're currently using this service account, you must create and apply your own [RBAC policy](https://kubernetes.io/docs/admin/authorization/rbac/) for new clusters. ([#59949](https://github.com/kubernetes/kubernetes/pull/59949), [@nicksardo](https://github.com/nicksardo))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    		// FRAME_SIZE_ERROR.
    		countError("frame_settings_ack_with_length")
    		return nil, http2ConnectionError(http2ErrCodeFrameSize)
    	}
    	if fh.StreamID != 0 {
    		// SETTINGS frames always apply to a connection,
    		// never a single stream. The stream identifier for a
    		// SETTINGS frame MUST be zero (0x0).  If an endpoint
    		// receives a SETTINGS frame whose stream identifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. 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