Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 471 for incompatible2 (0.28 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            def fromSource = AttributeTestUtil.attributes(usage: "fromSource")
            def incompatible = AttributeTestUtil.attributes(usage: "incompatible")
            def incompatible2 = AttributeTestUtil.attributes(usage: "incompatible2")
    
            def transform1 = registration(fromSource, incompatible)
            def transform2 = registration(fromSource, incompatible2)
    
            def sourceVariant = variant([usage: "source"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/example.com_split-incompatible_v2.0.0+incompatible.txt

    Written by hand.
    Test case for getting a package that has been moved to a nested module,
    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible
    -- .info --
    {"Version": "v2.0.0+incompatible"}
    -- subpkg/subpkg.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 299 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/example.com_split-incompatible_v2.1.0-pre+incompatible.txt

    Written by hand.
    Test case for getting a package that has been moved to a nested module,
    with a +incompatible version (and thus no go.mod file) at the root module.
    
    -- .mod --
    module example.com/split-incompatible
    -- .info --
    {"Version": "v2.1.0-pre+incompatible"}
    -- README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 13:54:10 UTC 2021
    - 347 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/example.com_retract_incompatible_v2.0.0+incompatible.txt

    The v1.0.0 release of example.com/retract/incompatible retracts
    v2.0.0+incompatible.
    
    -- .mod --
    module example.com/retract/incompatible
    -- .info --
    {"Version":"v2.0.0+incompatible"}
    -- incompatible.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 20 16:23:19 UTC 2020
    - 226 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/rsc.io_breaker_v2.0.0+incompatible.txt

    rsc.io/breaker v2.0.0+incompatible
    written by hand
    
    -- .mod --
    module rsc.io/breaker
    -- .info --
    {"Version":"v2.0.0+incompatible", "Name": "7307b307f4f0dde421900f8e5126fadac1e13aed", "Short": "7307b307f4f0"}
    -- breaker.go --
    package breaker
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 19 18:15:13 UTC 2018
    - 255 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/example.com_incompatiblewithsub_v2.0.0+incompatible.txt

    Module example.com/incompatiblewithsub has an incompatible version
    and a package in a subdirectory.
    -- .info --
    {"Version":"v2.0.0+incompatible"}
    -- .mod --
    module example.com/incompatiblewithsub
    -- sub/sub.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 16:50:30 UTC 2020
    - 225 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue27340/a.go

    // We use the #pragma to avoid a compiler warning about incompatible
    // pointer types, because we generate code passing a struct ptr rather
    // than using the typedef. This warning is expected and does not break
    // a normal build.
    // We can only disable -Wincompatible-pointer-types starting with GCC 5.
    
    // #if __GNU_MAJOR__ >= 5
    //
    // #pragma GCC diagnostic ignored "-Wincompatible-pointer-types"
    //
    // typedef struct {
    // 	int a;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/coderepo.go

    // prefix.
    //
    // Both list and incompatible must be sorted in semantic order.
    func (r *codeRepo) appendIncompatibleVersions(ctx context.Context, origin *codehost.Origin, list, incompatible []string) (*Versions, error) {
    	versions := &Versions{
    		Origin: origin,
    		List:   list,
    	}
    	if len(incompatible) == 0 || r.pathMajor != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/context/DaemonCompatibilitySpecSpec.groovy

            candidate.javaHome >> daemonJdkHome
    
            expect:
            !compatible
            unsatisfiedReason.contains "JVM is incompatible"
        }
    
        def "contexts with different jvm criteria are incompatible"() {
            clientWants(new DaemonJvmCriteria(JavaLanguageVersion.of(11), JvmVendorSpec.ADOPTIUM, JvmImplementation.VENDOR_SPECIFIC))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/DefaultCompatibilityCheckResult.java

            return producerValue;
        }
    
        @Override
        public void compatible() {
            done = true;
            compatible = true;
        }
    
        @Override
        public void incompatible() {
            done = true;
            compatible = false;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top