Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,002 for prefers (0.51 sec)

  1. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `requires`: optional. The required version for this dependency.
    - `prefers`: optional. The preferred version for this dependency.
    - `strictly`: optional. A strictly enforced version requirement for this dependency.
    - `rejects`: optional. An array of rejected versions for this dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinderTest.groovy

            // all other matching attempts are not compatible
            _ * attributeMatcher.isMatching(_ ,_) >> false
            0 * attributeMatcher._
        }
    
        def "prefers direct transformation over indirect"() {
            def requested = AttributeTestUtil.attributes([usage: "requested"])
    
            def fromSource = AttributeTestUtil.attributes([usage: "fromSource"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/ModuleMetadataJsonWriter.java

                }
                if (version.requires != null) {
                    write("requires", version.requires);
                }
                if (version.preferred != null) {
                    write("prefers", version.preferred);
                }
                if (!version.rejectedVersions.isEmpty()) {
                    writeArray("rejects", version.rejectedVersions);
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

                        v.name,
                        v.attributes,
                        v.dependencies + dependencies.collect { d ->
                            new DependencySpec(d.organisation, d.module, d.revision, d.prefers, d.strictly,d.rejects, d.exclusions, d.endorseStrictVersions, d.reason, d.attributes,
                                d.classifier ? new ArtifactSelectorSpec(d.module, 'jar', 'jar', d.classifier) : null, d.requireCapability)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    . Microsoft JDK 17.0.1
    . Microsoft JDK 17.0.0
    . Oracle JDK v17.0.0
    . Microsoft JRE v17.0.1
    . Oracle JRE v17.0.1
    
    Gradle prefers JDKs over JREs, so the JREs come last.
    Gradle prefers the Microsoft vendor over Oracle, so the Microsoft installations come first.
    Gradle prefers higher version numbers, so JDK 17.0.1 comes before JDK 17.0.0.
    
    So Gradle picks the first match in this order: Microsoft JDK 17.0.1.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/gotos.go

    }
    
    // error shows first (outermost) offending block
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	{
    		{
    			{
    			L:
    			}
    		}
    	}
    }
    
    // error prefers block diagnostic over declaration diagnostic
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	x := 1
    	_ = x
    	{
    	L:
    	}
    }
    
    // many kinds of blocks, all invalid to jump into or among,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | link:{javadocPath}/org/gradle/api/attributes/java/TargetJvmEnvironment.html#TARGET_JVM_ENVIRONMENT_ATTRIBUTE[`org.gradle.jvm.environment`]
    | Indicates that a variant is optimized for a certain JVM environment.
    | Common values are `standard-jvm` and `android`. Other values are allowed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go

    	}
    
    	ts := []Timespec{
    		NsecToTimespec(TimevalToNsec(tv[0])),
    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    // Getrlimit prefers the prlimit64 system call. See issue 38604.
    func Getrlimit(resource int, rlim *Rlimit) error {
    	err := Prlimit(0, resource, nil, rlim)
    	if err != ENOSYS {
    		return err
    	}
    	return getrlimit(resource, rlim)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-latest-specification.md

    - `requires`: optional. The required version for this dependency.
    - `prefers`: optional. The preferred version for this dependency.
    - `strictly`: optional. A strictly enforced version requirement for this dependency.
    - `rejects`: optional. An array of rejected versions for this dependency.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 16:14:11 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocatorTest.groovy

            then:
            locator.localMavenRepository == repo2
    
            where:
            localRepository << ["<localRepository/>", "<localRepository></localRepository>", ""]
        }
    
        def "prefers location specified in user settings file over that in global settings file"() {
            writeSettingsFile(locations.userSettingsFile, repo1)
            writeSettingsFile(locations.globalSettingsFile, repo2)
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top