Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,039 for prefers (0.16 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

            "a->a(*),b(*);b->b(*)"  | ["projectB-a-1.5.jar", "projectB-b-1.5.jar", "projectC-1.7.jar", "projectD-1.7.jar"]
        }
    
        def "prefers revConstraint over rev when dynamic resolve mode is used"() {
            given:
            buildFile << """
    configurations {
        compile
    }
    dependencies {
        repositories {
            ivy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/DefaultAttributeMatcherTest.groovy

            schema.accept(usage, "requested", "best")
            schema.prefer(usage, "best")
            def other = Attribute.of('other', String)
            schema.attribute(other)
            schema.accept(other, "requested", "compatible")
            schema.accept(other, "requested", "best")
            schema.prefer(other, "best")
    
            def candidate1 = attributes(usage: "best", other: "compatible")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux_loong64.go

    		NsecToTimespec(TimevalToNsec(tv[1])),
    	}
    	return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
    }
    
    // Getrlimit prefers the prlimit64 system call.
    func Getrlimit(resource int, rlim *Rlimit) error {
    	return prlimit(0, resource, nil, rlim)
    }
    
    // setrlimit prefers the prlimit64 system call.
    func setrlimit(resource int, rlim *Rlimit) error {
    	return prlimit(0, resource, rlim, nil)
    }
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 22:23:07 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. docs/en/mkdocs.yml

    site_url: https://fastapi.tiangolo.com/
    theme:
      name: material
      custom_dir: ../en/overrides
      palette:
      - media: '(prefers-color-scheme: light)'
        scheme: default
        primary: teal
        accent: amber
        toggle:
          icon: material/lightbulb
          name: Switch to dark mode
      - media: '(prefers-color-scheme: dark)'
        scheme: slate
        primary: teal
        accent: amber
        toggle:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ComponentSelectionRulesProcessorTest.groovy

            // rules are called in order
            closureCalled == 0..7
        }
    
        // Short circuiting tests will need to be removed once the extra param feature is removed
        def "short-circuit prefers non-metadata rules over rules requiring metadata"() {
            def metadataProvider = Mock(MetadataProvider)
            def closuresCalled = []
    
            when:
            rule { ComponentSelection cs -> closuresCalled << 0 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

            then:
            extraAttributes.contains(attr2)
            extraAttributes.contains(attr3)
            !extraAttributes.contains(attr1)
        }
    
        def "prefers extra attributes from the selection schema"() {
            def foo1 = Attribute.of("foo", String)
            def foo2 = Attribute.of("foo", String)
            def attr3 = Attribute.of("baz", String)
    
            given:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. hack/verify-shellcheck.sh

      1090
      # this lint warns when shellcheck cannot find a sourced file
      # this wouldn't be a bad idea to warn on, but it fails on lots of path
      # dependent sourcing, so just disable enforcing it
      1091
      # this lint prefers command -v to which, they are not the same
      2230
    )
    # comma separate for passing to shellcheck
    join_by() {
      local IFS="$1";
      shift;
      echo "$*";
    }
    SHELLCHECK_DISABLED="$(join_by , "${disabled[@]}")"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. README.md

    <picture>
      <source media="(prefers-color-scheme: dark)" srcset="./gradle-white-primary.png" width="350px">
      <img alt="Gradle" src="./gradle-dark-green-primary.png" width="350px">
    </picture>
    
    [![Revved up by Develocity](https://img.shields.io/badge/Revved%20up%20by-Develocity-06A0CE?logo=Gradle&labelColor=02303A)](https://ge.gradle.org/scans)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 20:49:08 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

                    noMoreExcludes()
                    prefers('2.5.6')
                    strictly(null)
                    rejects()
                }
                noMoreDependencies()
            }
    
            javaLibrary.parsedModuleMetadata.variant('runtimeElements') {
                dependency('commons-collections:commons-collections:3.2.2') {
                    noMoreExcludes()
                    prefers(null)
                    strictly('3.2.2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/initialization/layout/BuildLayoutFactoryTest.groovy

            layout.settingsDir == subDir
            layout.settingsFile == settingsFile
            !layout.buildDefinitionMissing
    
            where:
            settingsFilename << TEST_CASES
        }
    
        def "prefers the current directory as root directory with a #settingsFilename file"() {
            given:
            def locator = buildLayoutFactoryFor()
    
            and:
            def currentDir = tmpDir.createDir("sub/current")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top