Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 334 for cross (0.29 sec)

  1. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        @Test
        fun allVersionsAreIncludedInCrossVersionTests() {
            assertEquals("0.0", ALL_CROSS_VERSION_BUCKETS[0][0])
            assertEquals("99.0", ALL_CROSS_VERSION_BUCKETS[ALL_CROSS_VERSION_BUCKETS.size - 1][1])
    
            (1 until ALL_CROSS_VERSION_BUCKETS.size).forEach {
                assertEquals(ALL_CROSS_VERSION_BUCKETS[it - 1][1], ALL_CROSS_VERSION_BUCKETS[it][0])
            }
        }
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                functionalTests = listOf(
                    TestCoverage(5, TestType.quickFeedbackCrossVersion, Os.LINUX, JvmCategory.MIN_VERSION, QUICK_CROSS_VERSION_BUCKETS.size),
                    TestCoverage(6, TestType.quickFeedbackCrossVersion, Os.WINDOWS, JvmCategory.MIN_VERSION_WINDOWS, QUICK_CROSS_VERSION_BUCKETS.size)
                ),
                performanceTests = performanceRegressionTestCoverages
            ),
            Stage(
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP">{@code
       * Cross-Origin-Embedder-Policy}</a> header field name.
       *
       * @since 30.0
       */
      public static final String CROSS_ORIGIN_EMBEDDER_POLICY = "Cross-Origin-Embedder-Policy";
      /**
       * The HTTP <a href="https://wicg.github.io/cross-origin-embedder-policy/#COEP-RO">{@code
       * Cross-Origin-Embedder-Policy-Report-Only}</a> header field name.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 22 21:08:08 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  4. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        val ciGroup = "CI Lifecycle"
    
        register("quickTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in embedded execution mode"
            group = ciGroup
        }
    
        register("platformTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in forking execution mode"
            group = ciGroup
        }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Jan 17 13:36:27 GMT 2024
    - 15.7K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

         of the notice.
    
    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions,
         counter-claims, and cross-claims) alleging that a Contributor Version
         directly or indirectly infringes any patent, then the rights granted to
         You by any and all Contributors for the Covered Software under Section
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/errwrap/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/hcl/LICENSE

    5.2. If You initiate litigation against any entity by asserting a patent
         infringement claim (excluding declaratory judgment actions, counter-claims,
         and cross-claims) alleging that a Contributor Version directly or
         indirectly infringes any patent, then the rights granted to You by any and
         all Contributors for the Covered Software under Section 2.1 of this License
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/HashFunction.java

       * equivalent, but should not perform worse.
       *
       * <p><b>Warning:</b> This method, which reencodes the input before hashing it, is useful only for
       * cross-language compatibility. For other use cases, prefer {@link #hashUnencodedChars}, which is
       * faster, produces the same output across Java releases, and hashes every {@code char} in the
       * input, even if some are invalid.
       */
      HashCode hashString(CharSequence input, Charset charset);
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue May 25 18:22:59 GMT 2021
    - 10.9K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Cookie.kt

       */
      @get:JvmName("hostOnly") val hostOnly: Boolean,
      /**
       * Returns a string describing whether this cookie is sent for cross-site calls.
       *
       * Two URLs are on the same site if they share a [top private domain][HttpUrl.topPrivateDomain].
       * Otherwise, they are cross-site URLs.
       *
       * When a URL is requested, it may be in the context of another URL.
       *
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 06 04:12:05 GMT 2024
    - 23.1K bytes
    - Viewed (0)
Back to top