Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 300 for substituted (0.63 sec)

  1. src/cmd/compile/internal/typecheck/syms.go

    // of the "any" placeholder type will be substituted.
    func LookupRuntime(name string, types_ ...*types.Type) *ir.Name {
    	s := ir.Pkgs.Runtime.Lookup(name)
    	if s == nil || s.Def == nil {
    		base.Fatalf("LookupRuntime: can't find runtime.%s", name)
    	}
    	n := s.Def.(*ir.Name)
    	if len(types_) != 0 {
    		n = substArgTypes(n, types_...)
    	}
    	return n
    }
    
    // SubstArgTypes substitutes the given list of types for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 21:17:13 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            // 1. the graph used to get the resolved version has nothing to do with the dependencies we're trying to get versions for (likely user error)
            // 2. the graph contains first-level dependencies which have been substituted (likely) so we're going to iterate on dependencies instead
            for (DependencyResult dependencyResult : allDependencies) {
                if (dependencyResult instanceof ResolvedDependencyResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                        conf "org.utils:dep2:2.0"
                    }
    
                    configurations.conf.resolutionStrategy.dependencySubstitution {
                        substitute module("org.utils:dep1:1.5") using project(":dep1")
                        substitute module("org.utils:dep2:1.5") using project(":dep2")
                    }
                }
    """
    
            when:
            run ":impl:checkDeps"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/DependencyLockingGraphVisitor.java

                    new LockOutOfDateException("Did not resolve '" + forcedModule.getDisplayName() + "' which has been forced / substituted to a different version: '" + entry.getValue() + "'")));
            }
            return completedFailures;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildNestingIntegrationTest.groovy

            then:
            result.assertTaskExecuted(":buildC:jar")
            result.assertTaskExecuted(":buildB:jar")
            result.assertTaskExecuted(":jar")
        }
    
        def "a nested included build is substituted into all other builds"() {
            given:
            dependency(buildA, "org.test:buildB:1.2")
            dependency(buildA, "org.test:buildC:1.2")
    
            def buildC = singleProjectBuild("buildC") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         *
         * Consider the following code
         * ```
         * fun foo(list: List<String>) {
         *      list // get KtTypeScope for it
         * }
         *```
         *
         * Inside the `LIST_KT_ELEMENT.getKaType().getTypeScope()` would contain the `get(i: Int): String` method with substituted type `T = String`
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top