Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,648 for computeLO (0.16 sec)

  1. pkg/bootstrap/platform/gcp.go

    		Zone:    loc,
    		SubZone: "", // GCP has no subzone concept
    	}
    }
    
    const ComputeReadonlyScope = "https://www.googleapis.com/auth/compute.readonly"
    
    // Labels attempts to retrieve the GCE instance labels within the timeout
    // Requires read access to the Compute API (compute.instances.get)
    func (e *gcpEnv) Labels() map[string]string {
    	md := e.Metadata()
    	ctx, cancel := context.WithTimeout(context.Background(), defaultTimeout)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumerestrictions/volume_restrictions.go

    const (
    	// Name is the name of the plugin used in the plugin registry and configurations.
    	Name = names.VolumeRestrictions
    	// preFilterStateKey is the key in CycleState to VolumeRestrictions pre-computed data for Filtering.
    	// Using the name of the plugin will likely help us avoid collisions with other plugins.
    	preFilterStateKey = "PreFilter" + Name
    
    	// ErrReasonDiskConflict is used for NoDiskConflict predicate error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 17:40:39 UTC 2023
    - 12.5K bytes
    - Viewed (1)
  3. src/math/sqrt.go

    //                             -(i+1)
    //                      s  +  2       <= y                       (3)
    //                       i                i
    //
    //      The advantage of (3) is that s  and y  can be computed by
    //                                    i      i
    //      the following recurrence formula:
    //          if (3) is false
    //
    //          s     =  s  ,       y    = y   ;                     (4)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 15 17:07:57 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch mean, to be used by TensorFlow
    to compute the running mean.}]>:$batch_mean,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch variance, to be used by
    TensorFlow to compute the running variance.}]>:$batch_variance,
        Res<TF_Float32Tensor, [{A 1D Tensor for the computed batch mean, to be reused
    in the gradient computation.}]>:$reserve_space_1,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. src/math/big/natdiv.go

    That is, quo = ⌊u/v⌋ where ⌊x⌋ denotes the floor (truncation to integer) of x,
    and rem = u - quo·v.
    
    
    Long Division
    
    Division in a computer proceeds the same as long division in elementary school,
    but computers are not as good as schoolchildren at following vague directions,
    so we have to be much more precise about the actual steps and what can happen.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/mapper.go

    limitations under the License.
    */
    
    package runtime
    
    import (
    	"sync"
    
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    type equivalentResourceRegistry struct {
    	// keyFunc computes a key for the specified resource (this allows honoring colocated resources across API groups).
    	// if null, or if "" is returned, resource.String() is used as the key
    	keyFunc func(resource schema.GroupResource) string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 18:26:06 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  7. tensorflow/c/eager/tape.h

                                 std::vector<Gradient*>*, bool)>(lambda) {}
    };
    
    // Computes Jacobian-vector products using forward-mode automatic
    // differentiation.
    //
    // While GradientTape's RecordOperation is trivial, ForwardAccumulator's
    // Accumulate runs the gradient computation immediately.
    //
    // Keeps references to Tensors watched via Watch and computed in Accumulate
    // corresponding to output_tensors, and releases these references in its
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  8. src/mdo/merger.vm

        public static <T> List<T> merge(List<T> tgt, List<T> src, KeyComputer<T> computer, BinaryOperator<T> remapping) {
            if (src.isEmpty()) {
                return tgt;
            }
    
            MergingList<T> list;
            if (tgt instanceof MergingList) {
                list = (MergingList<T>) tgt;
            } else {
                list = new MergingList<>(computer, src.size() + tgt.size());
                list.mergeAll(tgt, (t, s) -> s);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Sep 05 16:06:44 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/PathAssembler.java

            return distName + "/" + urlHash;
        }
    
        /**
         * This method computes a hash of the provided {@code string}.
         * <p>
         * The algorithm in use by this method is as follows:
         * <ol>
         *    <li>Compute the MD5 value of the UTF-8 {@code string}.</li>
         *    <li>Truncate leading zeros (i.e., treat the MD5 value as a number).</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/extender.go

    	// Prioritize based on extender-implemented priority functions. The returned scores & weight
    	// are used to compute the weighted score for an extender. The weighted scores are added to
    	// the scores computed by Kubernetes scheduler. The total scores are used to do the host selection.
    	Prioritize(pod *v1.Pod, nodes []*NodeInfo) (hostPriorities *extenderv1.HostPriorityList, weight int64, err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top