Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for isM2compatible (0.16 sec)

  1. okhttp/src/test/java/okhttp3/ConnectionSpecTest.kt

            CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA.javaName,
          )
        assertThat(tlsSpec.isCompatible(socket)).isTrue()
        socket.enabledCipherSuites =
          arrayOf(
            CipherSuite.TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA.javaName,
          )
        assertThat(tlsSpec.isCompatible(socket)).isFalse()
      }
    
      @Test
      fun allEnabledCipherSuites() {
        platform.assumeNotConscrypt()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10TypeProvider.kt

                            var isCompatible = true
                            val languageVersionSettings = analysisContext.resolveSession.languageVersionSettings
                            if (languageVersionSettings.supportsFeature(LanguageFeature.ProhibitComparisonOfIncompatibleEnums)) {
                                isCompatible = isCompatible && typeParameterOwner.classId != StandardClassIds.Enum
                            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java

            } else if (versions.latestVersion != null && !versions.latestVersion.isEmpty()) {
                version = versions.latestVersion;
                repo = versions.latestRepository;
            }
            if (version != null && !isCompatible(request, version)) {
                logger.info(
                        "Latest version of plugin {}:{} failed compatibility check",
                        request.getGroupId(),
                        request.getArtifactId());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 09 20:17:59 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/hash/BloomFilterTest.java

        BloomFilter<Integer> bf2 = BloomFilter.create(Funnels.integerFunnel(), 10);
    
        assertFalse(bf1.isCompatible(bf2));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
              bf1.putAll(bf2);
            });
    
        assertFalse(bf2.isCompatible(bf1));
        assertThrows(
            IllegalArgumentException.class,
            () -> {
              bf2.putAll(bf1);
            });
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/DefaultAttributesSchema.java

                    result = new DefaultCompatibilityCheckResult<>(requested, candidate);
                    rules.execute(result);
                    if (result.hasResult()) {
                        return result.isCompatible();
                    }
                }
    
                rules = producerSchema.compatibilityRules(attribute);
                if (rules.doesSomething()) {
                    if (result == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 16:59:54 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirTypeProvider.kt

    import org.jetbrains.kotlin.fir.FirElement
    import org.jetbrains.kotlin.fir.analysis.checkers.ConeTypeCompatibilityChecker
    import org.jetbrains.kotlin.fir.analysis.checkers.ConeTypeCompatibilityChecker.isCompatible
    import org.jetbrains.kotlin.fir.analysis.checkers.typeParameterSymbols
    import org.jetbrains.kotlin.fir.declarations.FirMemberDeclaration
    import org.jetbrains.kotlin.fir.declarations.FirProperty
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 10:25:23 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/ConnectionSpec.kt

       * least one cipher suite enabled.
       *
       * For protocols, at least one of the [required protocols][tlsVersions] must match the socket's
       * enabled protocols.
       */
      fun isCompatible(socket: SSLSocket): Boolean {
        if (!isTls) {
          return false
        }
    
        if (tlsVersionsAsString != null &&
          !tlsVersionsAsString.hasIntersection(socket.enabledProtocols, naturalOrder())
        ) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/BloomFilter.java

       *   <li>have the same strategy
       *   <li>have equal funnels
       * </ul>
       *
       * @param that The Bloom filter to check for compatibility.
       * @since 15.0
       */
      public boolean isCompatible(BloomFilter<T> that) {
        checkNotNull(that);
        return this != that
            && this.numHashFunctions == that.numHashFunctions
            && this.bitSize() == that.bitSize()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/BloomFilter.java

       *   <li>have the same strategy
       *   <li>have equal funnels
       * </ul>
       *
       * @param that The Bloom filter to check for compatibility.
       * @since 15.0
       */
      public boolean isCompatible(BloomFilter<T> that) {
        checkNotNull(that);
        return this != that
            && this.numHashFunctions == that.numHashFunctions
            && this.bitSize() == that.bitSize()
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/connection/ConnectPlan.kt

        connectionSpecs: List<ConnectionSpec>,
        sslSocket: SSLSocket,
      ): ConnectPlan? {
        for (i in connectionSpecIndex + 1 until connectionSpecs.size) {
          if (connectionSpecs[i].isCompatible(sslSocket)) {
            return copy(connectionSpecIndex = i, isTlsFallback = (connectionSpecIndex != -1))
          }
        }
        return null
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top