Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 189 for substituted (0.15 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    [[included_build_declaring_substitutions]]
    == Declaring dependencies substituted by an included build
    
    By default, Gradle will configure each included build to determine the dependencies it can provide.
    The algorithm for doing this is simple.
    Gradle will inspect the group and name for the projects in the included build and substitute project dependencies for any external dependency matching `${project.group}:${project.name}`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                        extendsFrom conf
                    }
                    substituted {
                        extendsFrom conf
                    }
                }
                configurations.forced.resolutionStrategy.force 'org:leaf:1.0'
                configurations.substituted.resolutionStrategy.dependencySubstitution {
                    substitute module('org:leaf') using module('org:leaf:1.0')
                }
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. ci/official/utilities/setup_macos.sh

    if [[ -n "$(which grealpath)" ]] &&  [[ -n "$(which gstat)" ]]; then
      alias realpath=grealpath
      alias stat=gstat
      # By default, aliases are only expanded in interactive shells, which means
      # that they are not substituted for their corresponding commands in shell
      # scripts. By setting "expand_aliases", we enable alias expansion in
      # non-interactive shells as well.
      shopt -s expand_aliases
    else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 15:23:28 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/named.go

    //  - We say that a Named type is "expanded" if it is an instantiated type and
    //    type parameters in its underlying type and methods have been substituted
    //    with the type arguments from the instantiation. A type may be partially
    //    expanded if some but not all of these details have been substituted.
    //    Similarly, we refer to these individual details (underlying type or
    //    method) as being "expanded".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            failures.size() == 1
            failures.each {
                assert it.problem instanceof LockOutOfDateException
                assert it.problem.message.contains("Did not resolve 'org:foo:1.1' which has been forced / substituted to a different version: '1.0'")
            }
        }
    
        def 'invokes locking provider on writeLocks with visited modules'() {
            given:
            def identifier = newId(mid, '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/go/types/named.go

    //  - We say that a Named type is "expanded" if it is an instantiated type and
    //    type parameters in its underlying type and methods have been substituted
    //    with the type arguments from the instantiation. A type may be partially
    //    expanded if some but not all of these details have been substituted.
    //    Similarly, we refer to these individual details (underlying type or
    //    method) as being "expanded".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/unicode/utf16/utf16_test.go

    	r1, r2 rune
    	want   rune
    }{
    	{0xd800, 0xdc00, 0x10000},
    	{0xd800, 0xdc01, 0x10001},
    	{0xd808, 0xdf45, 0x12345},
    	{0xdbff, 0xdfff, 0x10ffff},
    	{0xd800, 'a', 0xfffd}, // illegal, replacement rune substituted
    }
    
    func TestDecodeRune(t *testing.T) {
    	for i, tt := range decodeRuneTests {
    		got := DecodeRune(tt.r1, tt.r2)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) IsRoot() bool {
    	if t.full != nil {
    		return t.full.IsRoot()
    	}
    	return t.language == _und
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.full != nil {
    		return Make(t.full.Parent())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. docs/sts/ldap.md

    export MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY=on
    ```
    
    ### Variable substitution in configuration strings
    
    In the configuration variables, `%s` is substituted with the _username_ from the STS request and `%d` is substituted with the _distinguished username (user DN)_ of the LDAP user. Please see the following table for which configuration variables support these substitution variables:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                }
            }
        }
    
        // TODO: This is not desired behavior. We should deprecate and forbid this.
        def "can consume non-consumable project configuration when substituted as a transitive dependency"() {
    
            file("included/settings.gradle") << """
                rootProject.name = "transitive"
            """
            file("included/build.gradle") << """
                group = "org"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top