Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of about 10,000 for covering (0.26 sec)

  1. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          assertTrue(managerServices + " should contain " + service, managerServices.contains(service));
        }
      }
    
      /**
       * This is for covering a case where the ServiceManager would behave strangely if constructed with
       * no service under management. Listeners would never fire because the ServiceManager was healthy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

          assertTrue(managerServices + " should contain " + service, managerServices.contains(service));
        }
      }
    
      /**
       * This is for covering a case where the ServiceManager would behave strangely if constructed with
       * no service under management. Listeners would never fire because the ServiceManager was healthy
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  4. src/image/color/palette/palette.go

    // intensity resolution. This results in 16 gray shades (4 gray subcubes with
    // 4 samples in each), 13 shades of each primary and secondary color (3
    // subcubes with 4 samples plus black) and a reasonable selection of colors
    // covering the rest of the color cube. The advantage is better representation
    // of continuous tones.
    //
    // This palette was used in the Plan 9 Operating System, described at
    // https://9p.io/magic/man2html/6/color
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[understanding_dependency_resolution]]
    = Understanding dependency resolution
    
    This chapter covers the way dependency resolution works _inside_ Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       when using Executors.
     * </ol>
     *
     * <p><b>Other notes</b>
     *
     * <ul>
     *   <li>Usually, there is one testcase method per JSR166 method covering "normal" operation, and
     *       then as many exception-testing methods as there are exceptions the method can throw.
     *       Sometimes there are multiple tests per JSR166 method when the different "normal" behaviors
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

     *       when using Executors.
     * </ol>
     *
     * <p><b>Other notes</b>
     *
     * <ul>
     *   <li>Usually, there is one testcase method per JSR166 method covering "normal" operation, and
     *       then as many exception-testing methods as there are exceptions the method can throw.
     *       Sometimes there are multiple tests per JSR166 method when the different "normal" behaviors
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/source.go

    		}
    	}
    }
    
    func (sp *sourcePrinter) expandAddresses(rpt *Report, addrs map[uint64]addrInfo, flat map[uint64]int64) {
    	// We found interesting addresses (ones with non-zero samples) above.
    	// Get covering address ranges and disassemble the ranges.
    	ranges, unprocessed := sp.splitIntoRanges(rpt.prof, addrs, flat)
    	sp.handleUnprocessed(addrs, unprocessed)
    
    	// Trim ranges if there are too many.
    	const maxRanges = 25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/list/list.go

    		// visited in the cycle, importing the first encountered package in the cycle,
    		// is visited first. The cycle import error will be bubbled up in the traversal
    		// order up to the first package in the cycle, covering all the packages
    		// in the cycle.
    		if !*listDeps {
    			all = load.PackageList(pkgs)
    		}
    		if listJsonFields.needAny("Deps") {
    			for _, p := range all {
    				collectDeps(p)
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	if p.Internal.Cover.Mode != "" {
    		outfiles := []string{}
    		infiles := []string{}
    		for i, file := range str.StringList(gofiles, cgofiles) {
    			if base.IsTestFile(file) {
    				continue // Not covering this file.
    			}
    
    			var sourceFile string
    			var coverFile string
    			var key string
    			if base, found := strings.CutSuffix(file, ".cgo1.go"); found {
    				// cgo files have absolute paths
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top