Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 177 for dialing (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

            // The recommended way of dealing with existing platforms
            LEGACY_PLATFORM,   // constraints in platform are published without strict constraints, consumer uses 'platform()' dependencies + component metadata rules to make all published constraints strict
            // The discouraged way of dealing with existing platforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    Obsolete artifacts are then deleted to ensure the cache does not grow indefinitely.
    
    [[sub:ephemeral-ci-cache]]
    == Dealing with ephemeral builds
    
    It's a common practice to run builds in ephemeral containers.
    A container is typically spawned to only execute a single build before it is destroyed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                "gradleEnvironmentVariables" to mapOf("myEnvVar" to "envValue")
            )
        }
    
        @Test
        fun `report file fatality on TAPI failure`() {
            // thus disabling syntax highlighting
    
            val editedScript = withBuildScript("")
    
            val wrongEnv = arrayOf("gradleHome" to existing("absent"))
            resolvedScriptDependencies(editedScript, env = wrongEnv).apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. android/pom.xml

                       https://github.com/google/guava/commit/e06a8cec65815599e510d7f9c1ea9d2a8eaa438a,
                       builds with JDK8 began failing animal-sniffer with the error:
    
                       Failed to check signatures: Bad class file .../CollectionFuture$ListFuture.class
    
                       One way of dealing with that would be to disable
                       animal-sniffer. And that would be fine for our -jre builds:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pom.xml

                       https://github.com/google/guava/commit/e06a8cec65815599e510d7f9c1ea9d2a8eaa438a,
                       builds with JDK8 began failing animal-sniffer with the error:
    
                       Failed to check signatures: Bad class file .../CollectionFuture$ListFuture.class
    
                       One way of dealing with that would be to disable
                       animal-sniffer. And that would be fine for our -jre builds:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                }
    """
            checkConfiguration("conf")
            resolve.expectDefaultConfiguration("runtime")
    
            expect:
            succeeds 'checkDeps'
            //Shape of the graph is not checked as bug was failing resolution altogether
        }
    
        def 'platform upgrade does not leave orphaned edges'() {
            given:
            def depA = mavenHttpRepo.module('org.test', 'depA', '1.0').withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    * when more than one variant from the producer matches the consumer attributes (ambiguity error)
    * when no variants from the producer match the consumer attributes (incompatibility error)
    
    [[sub:variant-ambiguity]]
    === Dealing with ambiguity errors
    
    An ambiguous variant selection looks like the following:
    
    [listing]
    ----
    > Could not resolve all files for configuration ':compileClasspath'.
       > Could not resolve project :lib.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.ListIterator;
    
    /**
     * Self contained utility functions for dealing with AST.
     */
    public abstract class AstUtils {
    
        private AstUtils() {
        }
    
        public static boolean isMethodOnThis(MethodCallExpression call, String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    	T     time.Duration // The total time taken.
    	Error error         // Error is the error from the failing input
    }
    
    func (r fuzzResult) String() string {
    	if r.Error == nil {
    		return ""
    	}
    	return r.Error.Error()
    }
    
    // fuzzCrashError is satisfied by a failing input detected while fuzzing.
    // These errors are written to the seed corpus and can be re-run with 'go test'.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         */
        ResolutionStrategy deactivateDependencyLocking();
    
    
        /**
         * Deactivates dependency verification for this configuration.
         * You should always be careful when disabling verification, and in particular avoid
         * disabling it for verification of plugins, because a plugin could use this to disable
         * verification itself.
         *
         * @since 6.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
Back to top