Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 234 for formaction (0.13 sec)

  1. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    				{Name: "cpu", Weight: 1},
    			},
    		},
    		{
    			// Node1 scores on 0-MaxNodeScore scale
    			// CPU Fraction: 300 / 250 = 100%
    			// Memory Fraction: 600 / 1000 = 60%
    			// Node1 Score: (100 + 60) / 2 = 80
    			// Node2 scores on 0-MaxNodeScore scale
    			// CPU Fraction: 100 / 250 = 40%
    			// Memory Fraction: 200 / 1000 = 20%
    			// Node2 Score: (20 + 40) / 2 = 30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  2. src/math/trig_reduce.go

    	z2hi, _ := bits.Mul64(z2, ix)
    	z1hi, z1lo := bits.Mul64(z1, ix)
    	z0lo := z0 * ix
    	lo, c := bits.Add64(z1lo, z2hi, 0)
    	hi, _ := bits.Add64(z0lo, z1hi, c)
    	// The top 3 bits are j.
    	j = hi >> 61
    	// Extract the fraction and find its magnitude.
    	hi = hi<<3 | lo>>61
    	lz := uint(bits.LeadingZeros64(hi))
    	e := uint64(bias - (lz + 1))
    	// Clear implicit mantissa bit and shift into place.
    	hi = (hi << (lz + 1)) | (lo >> (64 - (lz + 1)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    			Namespace: namespace,
    			Subsystem: subsystem,
    			Name:      "priority_level_request_utilization",
    			Help:      "Observations, at the end of every nanosecond, of number of requests (as a fraction of the relevant limit) waiting or in any stage of execution (but only initial stage for WATCHes)",
    			// For executing: the denominator will be seats, so this metric will skew low.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  4. src/testing/cover.go

    type Cover struct {
    	Mode            string
    	Counters        map[string][]uint32
    	Blocks          map[string][]CoverBlock
    	CoveredPackages string
    }
    
    // Coverage reports the current code coverage as a fraction in the range [0, 1].
    // If coverage is not enabled, Coverage returns 0.
    //
    // When running a large set of sequential test cases, checking Coverage after each one
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/strconv/ftoa.go

    // 'f' (-ddd.dddd, no exponent),
    // 'g' ('e' for large exponents, 'f' otherwise),
    // 'G' ('E' for large exponents, 'f' otherwise),
    // 'x' (-0xd.ddddp±ddd, a hexadecimal fraction and binary exponent), or
    // 'X' (-0Xd.ddddP±ddd, a hexadecimal fraction and binary exponent).
    //
    // The precision prec controls the number of digits (excluding the exponent)
    // printed by the 'e', 'E', 'f', 'g', 'G', 'x', and 'X' formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. src/go/constant/value.go

    	intVal     struct{ val *big.Int }   // Int values not representable as an int64
    	ratVal     struct{ val *big.Rat }   // Float values representable as a fraction
    	floatVal   struct{ val *big.Float } // Float values not representable as a fraction
    	complexVal struct{ re, im Value }
    )
    
    func (unknownVal) Kind() Kind { return Unknown }
    func (boolVal) Kind() Kind    { return Bool }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        that the device attribute exists.
      }];
    
      let constructor = "tensorflow::tf2xla::internal::CreateVerifyClusteringPass()";
    }
    
    def TPUClusterFormationPass : Pass<"tf-tpu-cluster-formation", "ModuleOp"> {
      let summary = "Forms clusters from operations assigned to the same TPU computation";
    
      let description = [{
        TPU computations from the frontend are composed of a `tf.TPUReplicateMetadata`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/math/PairedStatsAccumulator.java

       * the data points and the best fit line). For this fit, this error is a fraction {@code sqrt(1 -
       * R*R)} of the population standard deviation of {@code y}, where {@code R} is the Pearson's
       * correlation coefficient (as given by {@link #pearsonsCorrelationCoefficient()}).
       *
       * <p>The corresponding root-mean-square error in {@code x} as a function of {@code y} is a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    //     sign_bit exponent_bits fraction_bits
    //
    //   Here, sign_bit is a single bit that designates the sign of the
    //   number.
    //
    //   For float, there are 8 exponent bits and 23 fraction bits.
    //
    //   For double, there are 11 exponent bits and 52 fraction bits.
    //
    //   More details can be found at
    //   http://en.wikipedia.org/wiki/IEEE_floating-point_standard.
    //
    // Template parameter:
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  10. platforms/core-execution/workers/src/main/java/org/gradle/workers/WorkerExecutor.java

     *     <li>Execution in isolated contexts such as an isolated classloader or even a separate process</li>
     *     <li>Safe execution of multiple tasks in parallel</li>
     * </ul>
     *
     * <p>Work should be submitted with a {@link WorkAction} class representing the implementation of the unit of work
     * and an action to configure the parameters of the unit of work (via {@link WorkParameters}).
     *
     * <pre>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top