Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 238 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. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/meta.go

    	findKind := struct {
    		// +optional
    		APIVersion string `json:"apiVersion,omitempty"`
    		// +optional
    		Kind string `json:"kind,omitempty"`
    	}{}
    	if err := json.Unmarshal(data, &findKind); err != nil {
    		return nil, fmt.Errorf("couldn't get version/kind; json parse error: %v", err)
    	}
    	gv, err := schema.ParseGroupVersion(findKind.APIVersion)
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/testdata/script/mod_tidy_convergence_loop.txt

    # because it cannot resolve x, y, and z simultaneously.
    ! go mod tidy
    
    cmp go.mod go.mod.orig
    
    stderr '^go: finding module for package example\.net/w$'
    stderr '^go: finding module for package example\.net/x$'
    stderr -count=2 '^go: finding module for package example\.net/y$'
    stderr -count=2 '^go: finding module for package example\.net/z$'
    stderr '^go: found example\.net/x in example\.net/x v0.1.0$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_load_badchain.txt

    -- list-missing-expected --
    go: finding module for package example.com/badchain/c
    go: found example.com/badchain/c in example.com/badchain/c v1.1.0
    go: m/use imports
    	example.com/badchain/c: example.com/badchain/c@v1.1.0: parsing go.mod:
    	module declares its path as: badchain.example.com/c
    	        but was required as: example.com/badchain/c
    -- list-missing-test-expected --
    go: finding module for package example.com/badchain/c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/crypto/x509/root_wasm.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build wasm
    
    package x509
    
    // Possible certificate files; stop after finding one.
    var certFiles = []string{}
    
    // Possible directories with certificate files; all will be read.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:07 UTC 2023
    - 373 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/likelyadjust.go

    	defer f.Cache.freeBoolSlice(visited)
    	sawIrred := false
    
    	if f.pass.debug > 2 {
    		fmt.Printf("loop finding in %s\n", f.Name)
    	}
    
    	// Reducible-loop-nest-finding.
    	for _, b := range po {
    		if f.pass != nil && f.pass.debug > 3 {
    			fmt.Printf("loop finding at %s\n", b)
    		}
    
    		var innermost *loop // innermost header reachable from this block
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 15.4K bytes
    - Viewed (0)
Back to top