Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,092 for Compatible (0.3 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/GradlePluginVariantsSupport.java

                if (consumer == null || producer == null) {
                    details.compatible();
                } else if (GradleVersion.version(consumer.getName()).getBaseVersion().compareTo(GradleVersion.version(producer.getName())) >= 0) {
                    details.compatible();
                } else {
                    details.incompatible();
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/README.md

    recommend using the "official" serialization stack in `k8s.io/apimachinery`.
    Directly serializing these types to proto will not result in data that matches
    the wire format or is compatible with other kubernetes ecosystem tools. The
    reason is that the wire format includes a magic prefix and an envelope proto.
    Please see:
    https://kubernetes.io/docs/reference/using-api/api-concepts/#protobuf-encoding
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

                // implementations are NOT required to say "compatible" because
                // they should not even be called in this case
                0 * details._()
            } else if (compatible) {
                1 * details.compatible()
            } else {
                0 * details._()
            }
    
            where:
            consumer                     | producer                     | compatible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  4. docs/integrations/veeam/README.md

    # Using MinIO with Veeam
    
    When using Veeam Backup and Replication, you can use S3 compatible object storage such as MinIO as a capacity tier for backups.  This disaggregates storage for the Veeam infrastructure and allows you to retain control of your data. With the ease of use of setup and administration of MinIO, it allows a Veeam backup admin to easily deploy their own object store for capacity tiering.
    
    ## Prerequisites
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  5. okhttp/src/main/resources/META-INF/proguard/okhttp3.pro

    -keeppackagenames okhttp3.internal.publicsuffix.*
    -adaptresourcefilenames okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz
    
    # Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
    -dontwarn org.codehaus.mojo.animal_sniffer.*
    
    # OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
    -dontwarn okhttp3.internal.platform.**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 682 bytes
    - Viewed (0)
  6. analysis/analysis-api/build.gradle.kts

    import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
    
    plugins {
        kotlin("jvm")
        id("jps-compatible")
    }
    
    kotlin {
        explicitApiWarning()
    }
    
    dependencies {
        compileOnly(commonDependency("org.jetbrains.kotlin:kotlin-reflect")) { isTransitive = false }
    
        compileOnly(project(":compiler:psi"))
        implementation(project(":compiler:backend"))
        compileOnly(project(":core:compiler.common"))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/ClosureBackedActionTest.groovy

            def e = thrown InvalidActionClosureException
            e.closure.is(closure)
            e.message == "The closure '${closure.toString()}' is not valid as an action for argument '1'. It should accept no parameters, or one compatible with type 'java.lang.String'. It accepts (java.util.Map)."
        }
    
        def "closure with more than one param type is given"() {
            given:
            def closure = { Map m, List l -> }
            def arg = "1"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/JavaVersion.java

            return isCompatibleWith(VERSION_1_10);
        }
    
        /**
         * Returns if the version is Java 11 compatible.
         *
         * @since 4.7
         */
        public boolean isJava11Compatible() {
            return isCompatibleWith(VERSION_11);
        }
    
        /**
         * Returns if the version is Java 12 compatible.
         *
         * @since 5.0
         */
        public boolean isJava12Compatible() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/tests/failRuntimeClasspathResolve.out

    > Could not resolve all files for configuration ':runtimeClasspath'.
       > Could not resolve org.lwjgl:lwjgl:3.2.3.
         Required by:
             project :
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 820 bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/response-directly.md

    Par défaut, **FastAPI** convertirait automatiquement cette valeur de retour en JSON en utilisant le `jsonable_encoder` expliqué dans [JSON Compatible Encoder](../tutorial/encoder.md){.internal-link target=_blank}.
    
    Ensuite, en arrière-plan, il mettra ces données JSON-compatible (par exemple un `dict`) à l'intérieur d'un `JSONResponse` qui sera utilisé pour envoyer la réponse au client.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top