Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 478 for prefers (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonClientsManagerTest.groovy

            def shouldBeNull = manager.reserveIdleClient(options)
    
            then:
            1 * client.stop()
            shouldBeNull == null
        }
    
        def "prefers to stop less frequently used idle clients when releasing memory"() {
            def client1 = Mock(WorkerDaemonClient) { _ * getUses() >> 5 }
            def client2 = Mock(WorkerDaemonClient) { _ * getUses() >> 1 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

                    noMoreExcludes()
                    prefers(null)
                    strictly('3.2.2')
                    rejects()
                }
                dependency('org.springframework:spring-core:2.5.6') {
                    noMoreExcludes()
                    prefers(null)
                    strictly(null)
                    rejects()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStoreTest.groovy

            @Inject
            private String injectedProperty
    
            String getInjectedProperty() { injectedProperty }
        }
    
        def "warns about annotation on field conflicting with annotation on getter and prefers getter annotation"() {
            expect:
            assertProperties TypeWithConflictingFieldAndMethodAnnotation, [
                property: [(TYPE): Small],
            ], [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 11 15:31:37 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonReuseIntegrationTest.groovy

            and:
            daemons.daemons.size() == 2
        }
    
        // GradleHandle.abort() does not work reliably on windows and creates flakiness
        @Requires(UnitTestPreconditions.NotWindows)
        def "prefers an idle daemon when daemons with canceled builds are available"() {
            given:
            expectEvent("started1")
            expectEvent("started2")
            buildFile << """
                task block {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    // has a global unicast address (non-loopback, non-link local, non-point2point), and returns the IP.
    // addressFamilies determines whether it prefers IPv4 or IPv6
    func chooseIPFromHostInterfaces(nw networkInterfacer, addressFamilies AddressFamilyPreference) (net.IP, error) {
    	intfs, err := nw.Interfaces()
    	if err != nil {
    		return nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a
       * href="https://wicg.github.io/user-preference-media-features-headers/#sec-ch-prefers-color-scheme">{@code
       * Sec-CH-Prefers-Color-Scheme}</a> header field name.
       *
       * <p>This header is experimental.
       *
       * @since 31.0
       */
      public static final String SEC_CH_PREFERS_COLOR_SCHEME = "Sec-CH-Prefers-Color-Scheme";
    
      /**
       * The HTTP <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top