Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for alternate (0.9 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	CPUCFSQuotaPeriod featuregate.Feature = "CustomCPUCFSQuotaPeriod"
    
    	// owner: @ConnorDoyle, @fromanirh (only for GA graduation)
    	// alpha: v1.8
    	// beta: v1.10
    	// GA: v1.26
    	//
    	// Alternative container-level CPU affinity policies.
    	CPUManager featuregate.Feature = "CPUManager"
    
    	// owner: @fromanirh
    	// alpha: v1.23
    	// beta: see below.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

     - CephFS volume plugin (`kubernetes.io/cephfs`) has been deprecated in this release and will be removed in a subsequent release. The alternative is to use the CephFS CSI driver (https://github.com/ceph/ceph-csi/) in your Kubernetes cluster. ([#118143](https://github.com/kubernetes/kubernetes/pull/118143), [@humblec](https://github.com/humblec))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. RELEASE.md

        *   Add `tf.experimental.dtensor.is_dtensor` to check if a tensor is a DTensor instance.
    
    *   `tf.data`:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.29.md

     - `kubeadm`: a separate "super-admin.conf" file is now deployed. The User in `admin.conf` 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)
  6. docs/en/docs/release-notes.md

    ## 0.107.0
    
    ### Upgrades
    
    * ⬆️ Upgrade Starlette to 0.28.0. PR [#9636](https://github.com/tiangolo/fastapi/pull/9636) by [@adriangb](https://github.com/adriangb).
    
    ### Docs
    
    * 📝 Add docs: Node.js script alternative to update OpenAPI for generated clients. PR [#10845](https://github.com/tiangolo/fastapi/pull/10845) by [@alejsdev](https://github.com/alejsdev).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        numerator = tf.exp(x)
        denominator = tf.reduce_sum(numerator)
        return numerator / denominator
    ```
    
    This however is susceptible to overflow if the values in x are large. An
    alternative more stable way is to subtract the maximum of x from each of the
    values.
    
    ```python
    
      def stable_softmax(x):
        z = x - tf.reduce_max(x)
        numerator = tf.exp(z)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top