Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 478 for prefers (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

            buildFile << """
                repositories {
                    maven { url '${mavenRepo.uri}' }
                }
                configurations {
                    conf
                }
    """
        }
    
        def "prefers the runtime variant of a Maven module"() {
            def notRequired = mavenRepo.module('test', 'dont-include-me', '1.0')
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  2. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/metadata/GradleModuleMetadataWriterTest.groovy

          "name": "v2",
          "attributes": {
            "usage": "runtime"
          },
          "dependencies": [
            {
              "group": "g2",
              "module": "m2",
              "version": {
                "prefers": "v2",
                "rejects": [
                  "v3",
                  "v4"
                ]
              },
              "excludes": [
                {
                  "group": "*",
                  "module": "*"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 07:21:42 UTC 2023
    - 36.9K bytes
    - Viewed (0)
  3. android/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)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            with (resolver.resolveComponent(ModuleVersionIdentifier, project.identityPath)) {
                group == "pub-group"
                name == "pub-name"
                version == "pub-version"
            }
        }
    
        def "prefers coordinates of publication from dependent project where all publications share coordinates"() {
            def publication = pub('mock', "pub-group", "pub-name", "pub-version")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/insight/DependencyResultSorterSpec.groovy

            then:
            sorted == [d1, d2, d3, d4, d5, d6, d7]
        }
    
        def "for a given module prefers dependency where selected exactly matches requested"() {
            def core = DefaultModuleIdentifier.newId("org.gradle", "core")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 18.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/schema/group_version.go

    func (gv GroupVersion) Identifier() string {
    	return gv.String()
    }
    
    // KindForGroupVersionKinds identifies the preferred GroupVersionKind out of a list. It returns ok false
    // if none of the options match the group. It prefers a match to group and version over just group.
    // TODO: Move GroupVersion to a package under pkg/runtime, since it's used by scheme.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 09:08:59 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. src/runtime/mgcstack.go

    		*head = buf
    	}
    	buf.obj[buf.nobj] = p
    	buf.nobj++
    }
    
    // Remove and return a potential pointer to a stack object.
    // Returns 0 if there are no more pointers available.
    //
    // This prefers non-conservative pointers so we scan stack objects
    // precisely if there are any non-conservative pointers to them.
    func (s *stackScanState) getPtr() (p uintptr, conservative bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 21:06:52 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

            return metadata.getJavaHome().toFile().equals(Jvm.current().getJavaHome());
        }
    
        /**
         * Locates a JRE installation for the current JVM. Prefers a stand-alone JRE installation over one that is part of a JDK install.
         *
         * @return The JRE home directory, or null if not found
         */
        public static File getBestJre() {
            Jvm jvm = Jvm.current();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    * A project uses dynamic versions for dependencies but prefers exposing the resolved version for a given release to its consumers.
    * In combination with <<dependency_locking.adoc#dependency-locking,dependency locking>>, you want to publish the locked versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. cmd/endpoint-ellipses.go

    var isValidSetSize = func(count uint64) bool {
    	return (count >= setSizes[0] && count <= setSizes[len(setSizes)-1])
    }
    
    func commonSetDriveCount(divisibleSize uint64, setCounts []uint64) (setSize uint64) {
    	// prefers setCounts to be sorted for optimal behavior.
    	if divisibleSize < setCounts[len(setCounts)-1] {
    		return divisibleSize
    	}
    
    	// Figure out largest value of total_drives_in_erasure_set which results
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top