Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 631 for covers (0.22 sec)

  1. src/cmd/vendor/golang.org/x/text/cases/context.go

    // that this is a rune with a XOR pattern defined.
    func (c *context) copyXOR() bool {
    	if !c.copy() {
    		return false
    	}
    	if c.info&xorIndexBit == 0 {
    		// Fast path for 6-bit XOR pattern, which covers most cases.
    		c.dst[c.pDst-1] ^= byte(c.info >> xorShift)
    	} else {
    		// Interpret XOR bits as an index.
    		// TODO: test performance for unrolling this loop. Verify that we have
    		// at least two bytes and at most three.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    ====
    
    [[sec:excluding-transitive-deps]]
    == Excluding transitive dependencies
    
    While the previous section showed how you can enforce a certain version of a transitive dependency, this section covers _excludes_ as a way to remove a transitive dependency completely.
    
    [WARNING]
    ====
    Similar to forcing a version of a dependency, excluding a dependency completely requires a conscious decision.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

         *
         * Generates random UUID string based versions and tries to sort them. While this test is not as reliable
         * as {@link #testCompareUuidVersionStringStream()}, it covers broader range and in case it fails it records
         * the failed array, so we can investigate more.
         */
        @Test
        void testCompareUuidRandom() {
            for (int j = 0; j < 32; j++) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/cache/PopulatedCachesTest.java

     *
     * @author mike nonemacher
     */
    
    public class PopulatedCachesTest extends TestCase {
      // we use integers as keys; make sure the range covers some values that ARE cached by
      // Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.)
      static final int WARMUP_MIN = 120;
      static final int WARMUP_MAX = 135;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            "executable"     | "over java extension"        | null     | null         | "other"        | "current"         | "other"
            "java home"      | "over java extension"        | null     | "other"      | null           | "current"         | "other"
            "assigned tool"  | "over java extension"        | "other"  | null         | null           | "current"         | "other"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  6. src/html/template/escape_test.go

    	if err == nil {
    		t.Error("expected error")
    	} else if !strings.Contains(err.Error(), "incomplete") {
    		t.Errorf("expected error about incomplete template; got %s", err)
    	}
    }
    
    // This covers issue #20842.
    func TestIdempotentExecute(t *testing.T) {
    	tmpl := Must(New("").
    		Parse(`{{define "main"}}<body>{{template "hello"}}</body>{{end}}`))
    	Must(tmpl.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    A dimension is simply a category, where each category is orthogonal to the rest.
    For example, the "build type" dimension is a category that includes debug and release.
    The "architecture" dimension covers processor architectures like x86-64 and x86.
    
    A variant is a combination of values for these dimensions, consisting of exactly one value for each dimension.
    You might have a "debug x86-64" or a "release x86" variant.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/README.md

    ## Testing docs 
    
    Currently, `docs` is tested by `docs:docsTest`, which covers three kinds of code: 
    
    - The code generated by [Build Init Plugin](https://docs.gradle.org/current/userguide/build_init_plugin.html), i.e. `gradle init` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 21:49:03 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. architecture/environments/operator.md

    # Istio operator code overview
    
    ## Introduction
    
    This document covers primarily the code, with some background on how the design maps to it.
    See the
    [design doc](https://docs.google.com/document/d/11j9ZtYWNWnxQYnZy8ayZav1FMwTH6F6z6fkDYZ7V298/edit#heading=h.qex63c29z2to)
    for a more complete design description. The operator code is divided roughly into five areas:
    
    1. [IstioOperatorSpec API](#istiooperatorspec-api) and related infrastructure, which is expressed as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
            // This part covers constraint that were taken into account between a selection being deferred and this node being scheduled for traversal
            if (upcomingNoLongerPendingConstraints != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top