Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 566 for substituted (0.18 sec)

  1. src/cmd/compile/internal/staticinit/sched.go

    			for i, n := range as2init.Lhs {
    				if n == name && !canRepeat(as2init.Rhs[i]) {
    					return false
    				}
    			}
    		}
    	}
    
    	// Possible static init.
    	// Build tree with args substituted for params and try it.
    	args := make(map[*ir.Name]ir.Node)
    	for i, v := range as2init.Lhs {
    		if ir.IsBlank(v) {
    			continue
    		}
    		args[v.(*ir.Name)] = as2init.Rhs[i]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/14529")
        def "transform of project artifact can consume transform of external artifact whose upstream dependency has been substituted with local project"() {
            given:
            def m1 = mavenRepo.module("test", "lib", "1.2").publish()
            mavenRepo.module("test", "lib2", "1.2").dependsOn(m1).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    A project name with kebab case (`some-lib`) or snake case (`some_lib`) will be converted to camel case in accessors: `projects.someLib`.
    
    === Local forks of module dependencies
    
    A module dependency can be substituted by a dependency to a local fork of the sources of that module, if the module itself is built with Gradle.
    This can be done by utilising <<composite_builds.adoc#defining_composite_builds,composite builds>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/build.go

    // Normally it is empty, meaning run the binaries directly.
    // If cross-compiling and running on a remote system or
    // simulator, it is typically go_GOOS_GOARCH_exec, with
    // the target GOOS and GOARCH substituted.
    // The -exec flag overrides these defaults.
    var ExecCmd []string
    
    // FindExecCmd derives the value of ExecCmd to use.
    // It returns that value and leaves ExecCmd set for direct use.
    func FindExecCmd() []string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        }
    
        @Issue("gradle/gradle#8944")
        def 'verify that cleaning up constraints no longer causes a ConcurrentModificationException'() {
            given:
            // Direct dependency with transitive to be substituted by project
            def project = mavenRepo.module('org', 'project', '1.0')
            mavenRepo.module('org', 'direct', '1.0').dependsOn(project).publish()
    
            // Updated version no longer depends on project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    				template = rt
    			} else {
    				st.failEarlier("substituted template parameter not in scope of template", st.off-off)
    			}
    			if template == nil {
    				// This template parameter is within
    				// the scope of a cast operator.
    				return &TemplateParam{Index: index, Template: nil}
    			}
    
    			if index >= len(template.Args) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. src/html/template/escape_test.go

    			// If we do change to support that, this test should
    			// catch failures to filter out special tag names which
    			// would violate the structure preservation property --
    			// if any special tag name could be substituted, then
    			// the content could be raw text/RCDATA for some inputs
    			// and regular HTML content for others.
    			`<{{"script"}}>{{"doEvil()"}}</{{"script"}}>`,
    			`&lt;script>doEvil()&lt;/script>`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10FunctionLikeSignature.kt

        override fun substitute(substitutor: KaSubstitutor): KaFunctionLikeSignature<S> = withValidityAssertion {
            KaFe10FunctionLikeSignature(
                symbol,
                substitutor.substitute(returnType),
                receiverType?.let { substitutor.substitute(it) },
                valueParameters.map { valueParameter ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/components/AbstractKtSignatureSubstitutor.kt

        override fun <S : KaFunctionLikeSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaFunctionLikeSignature<S> {
            if (substitutor is KaSubstitutor.Empty) return asSignature(symbol)
            return asSignature(symbol).substitute(substitutor)
        }
    
        override fun <S : KaVariableLikeSymbol> substitute(symbol: S, substitutor: KaSubstitutor): KaVariableLikeSignature<S> {
            if (substitutor is KaSubstitutor.Empty) return asSignature(symbol)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    If you have a Maven dependency pointing to an Ivy dependency where the `default` configuration dependencies do not match the `compile` + `runtime` + `master` ones
    _and_ that Ivy dependency was substituted (using a `resolutionStrategy.force`, `resolutionStrategy.eachDependency` or `resolutionStrategy.dependencySubstitution`)
    then this fix will impact you.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top