Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for findMin (0.12 sec)

  1. guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int findMinChild(int index) {
          return findMin(getLeftChildIndex(index), 2);
        }
    
        /** Returns the minimum grand child or -1 if no grand child exists. */
        int findMinGrandChild(int index) {
          int leftChildIndex = getLeftChildIndex(index);
          if (leftChildIndex < 0) {
            return -1;
          }
          return findMin(getLeftChildIndex(leftChildIndex), 4);
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        int findMinChild(int index) {
          return findMin(getLeftChildIndex(index), 2);
        }
    
        /** Returns the minimum grand child or -1 if no grand child exists. */
        int findMinGrandChild(int index) {
          int leftChildIndex = getLeftChildIndex(index);
          if (leftChildIndex < 0) {
            return -1;
          }
          return findMin(getLeftChildIndex(leftChildIndex), 4);
        }
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/AbstractWindowsKitComponentLocator.java

            try {
                File windowsKitDir = FileUtils.canonicalize(new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, baseKey + REGISTRY_ROOTPATH_KIT, REGISTRY_KIT_10)));
                Set<T> found = findIn(windowsKitDir, DiscoveryType.REGISTRY);
                if (found.isEmpty()) {
                    brokenComponents.add(windowsKitDir);
                }
                for (T t : found) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4RerunPreviousFailedTestIntegrationTest.groovy

            List<String> lines = output.readLines()
            boolean findIt = false
            for (String line in lines) {
                if (line.contains("Test index ${failedTestIndex}")) {
                    findIt = true
                    break
                } else if (line.contains("Test index")) {
                    assert false
                }
            }
    
            assert findIt
        }
    
    
        def 'can delete previous failed test'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

        void findSamples(String dir, Closure runner) {
            def sources = findDir(dir)
            def ant = new AntBuilder()
    
            def list = ant.fileScanner {
                fileset(dir: sources, includes: includes)
            }
    
            list.each() { runSamplesFromFile(it, runner) }
        }
    
        static String findDir(String dir) {
            def workDir = SystemProperties.instance.currentDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/static-files.md

    Weitere Informationen hierzu finden Sie im [Handbuch für fortgeschrittene Benutzer](../advanced/index.md){.internal-link target=_blank}.
    
    ## Einzelheiten
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. docs/de/docs/learn/index.md

    # Lernen
    
    Hier finden Sie die einführenden Kapitel und Tutorials zum Erlernen von **FastAPI**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 11:22:17 UTC 2024
    - 227 bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/many-start-stop.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests simply starting and stopping tracing multiple times.
    //
    // This is useful for finding bugs in trace state reset.
    
    //go:build ignore
    
    package main
    
    import (
    	"bytes"
    	"log"
    	"os"
    	"runtime"
    	"runtime/trace"
    )
    
    func main() {
    	// Trace a few times.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 786 bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Comparators.java

        return least(k, comparator.reversed());
      }
    
      /**
       * Returns the minimum of the two values. If the values compare as 0, the first is returned.
       *
       * <p>The recommended solution for finding the {@code minimum} of some values depends on the type
       * of your data and the number of elements you have. Read more in the Guava User Guide article on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FilesFinder.java

     * limitations under the License.
     */
    
    package org.gradle.cache.internal;
    
    import java.io.File;
    import java.io.FileFilter;
    
    /**
     * Encapsulates a criteria for finding files.
     */
    public interface FilesFinder {
        /**
         * Find files according to this finder's criteria within the supplied base
         * directory that pass the supplied {@link FileFilter}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1002 bytes
    - Viewed (0)
Back to top