Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 735 for lowest (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    At the same time, classes that are sent to the build via custom build actions need to be targeted to the lowest supported Java version.
    The JVM versions supported by Gradle is version-specific.
    The upper bound is defined in the <<compatibility.adoc#compatibility,compatibility matrix>>.
    The rule for the lower bound is the following:
    
    - Gradle 3.x and 4.x require a minimum version of Java 7.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Pmd.java

         */
        public static void validate(int value) {
            if (value > 5 || value < 1) {
                throw new InvalidUserDataException(String.format("Invalid rulesMinimumPriority '%d'.  Valid range 1 (highest) to 5 (lowest).", value));
            }
        }
    
        /**
         * Validates the number of threads used by PMD.
         *
         * @param value the number of threads used by PMD
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:11 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

       * @throws IllegalStateException if the dataset is empty or contains a single value
       */
      public double sampleStandardDeviation() {
        return Math.sqrt(sampleVariance());
      }
    
      /**
       * Returns the lowest value in the dataset. The count must be non-zero.
       *
       * <h3>Non-finite values</h3>
       *
       * <p>If the dataset contains {@link Double#NaN} then the result is {@link Double#NaN}. If it
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. src/cmd/trace/gen.go

    			}
    		}
    	}
    	g.Finish(ctx)
    }
    
    // emitTask emits information about a task into the trace viewer's event stream.
    //
    // sortIndex sets the order in which this task will appear related to other tasks,
    // lowest first.
    func emitTask(ctx *traceContext, task *trace.UserTaskSummary, sortIndex int) {
    	// Collect information about the task.
    	var startStack, endStack trace.Stack
    	var startG, endG trace.GoID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/utils.go

    		a[k] = v
    	}
    	return a
    }
    
    // getJobFromTemplate2 makes a Job from a CronJob. It converts the unix time into minutes from
    // epoch time and concatenates that to the job name, because the cronjob_controller v2 has the lowest
    // granularity of 1 minute for scheduling job.
    func getJobFromTemplate2(cj *batchv1.CronJob, scheduledTime time.Time) (*batchv1.Job, error) {
    	labels := copyLabels(&cj.Spec.JobTemplate)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

        data from smallest to largest and then finding the value at a specified
        percentage position. For example, the 0.01 percentile represents the value
        in a given data set that corresponds to the lowest 0.01% of the data.
    
        HistogramPercentile calibration uses min_percentile and max_percentile to
        find min and max.
    
        min_percentile and max_percentile must be in range [0, 100].
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cgroup_manager_linux.go

    		}
    	}
    	return sets.List(pidsToKill)
    }
    
    // ReduceCPULimits reduces the cgroup's cpu shares to the lowest possible value
    func (m *cgroupManagerImpl) ReduceCPULimits(cgroupName CgroupName) error {
    	// Set lowest possible CpuShares value for the cgroup
    	minimumCPUShares := uint64(MinShares)
    	resources := &ResourceConfig{
    		CPUShares: &minimumCPUShares,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  8. src/internal/trace/traceviewer/mmu.go

            $.getJSON(url)
             .fail(function(xhr, status, error) {
                details.text(status + ': ' + url + ' could not be loaded');
             })
             .done(function(worst) {
                details.text('Lowest mutator utilization in ' + niceDuration(windowNS) + ' windows:');
                for (var i = 0; i < worst.length; i++) {
                  details.append($('<br>'));
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

    sub1:a
    sub2:a
    """)
            output.contains("""
    $otherGroupHeader
    sub1:b
    sub2:b
    c
    """)
        }
    
        def "task selector description is taken from task that TaskNameComparator considers to be of lowest ordering"() {
            given:
            settingsFile << """
    include 'sub1'
    include 'sub2'
    """
            file("sub1/build.gradle") << """
                task alpha {
                    group = '$GROUP'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue2615.go

    // license that can be found in the LICENSE file.
    
    // Issue 2615: a long chain of else if's causes an overflow
    // in the parser stack.
    
    package main
    
    // test returns the index of the lowest set bit in a 256-bit vector.
    func test(x [4]uint64) int {
    	if x[0]&(1<<0) != 0 {
    		return 0
    	} else if x[0]&(1<<1) != 0 {
    		return 1
    	} else if x[0]&(1<<2) != 0 {
    		return 2
    	} else if x[0]&(1<<3) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 11.5K bytes
    - Viewed (0)
Back to top