Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for isM2compatible (0.23 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/IvyResolver.java

                componentMetadataVersionListerFactory,
                injector,
                checksumService);
            this.dynamicResolve = dynamicResolve;
            this.m2Compatible = descriptor.isM2Compatible();
            this.localRepositoryAccess = new IvyLocalRepositoryAccess();
            this.remoteRepositoryAccess = new IvyRemoteRepositoryAccess();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 5.6K 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. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

            request = new DaemonRequestContext(null, jvmCriteria, daemonOpts, applyInstrumentationAgent, nativeServicesMode, priority)
        }
    
        private boolean isCompatible() {
            new DaemonCompatibilitySpec(request).isSatisfiedBy(candidate)
        }
    
        private String getUnsatisfiedReason() {
            new DaemonCompatibilitySpec(request).whyUnsatisfied(candidate)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. pkg/proxy/winkernel/proxier.go

    	// Check that the kernel supports what we need.
    	if err := kcompat.IsCompatible(); err != nil {
    		return false, err
    	}
    	return true, nil
    }
    
    type WindowsKernelCompatTester struct{}
    
    // IsCompatible returns true if winkernel can support this mode of proxy
    func (lkct WindowsKernelCompatTester) IsCompatible() error {
    	_, err := hcsshim.HNSListPolicyListRequest()
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top