Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 96 for substitutions (0.18 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DependencySubstitutionRules.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.DependencySubstitution;
    import org.gradle.internal.Actions;
    
    /**
     * A service that injects dependency substitution rules into the build.
     */
    public interface DependencySubstitutionRules {
        DependencySubstitutionRules NO_OP = new DependencySubstitutionRules() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSubstitutorFactory.kt

    import org.jetbrains.kotlin.analysis.api.fir.types.KaFirType
    import org.jetbrains.kotlin.analysis.api.types.KaSubstitutor
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutorByMap
    
    internal class KaFirSubstitutorFactory(
        override val analysisSession: KaFirSession
    ) : KaSubstitutorFactory(), KaFirSessionComponent {
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/CompositeBuildDependencySubstitutions.java

    import javax.annotation.Nullable;
    import java.util.Collection;
    import java.util.SortedSet;
    import java.util.TreeSet;
    import java.util.stream.Collectors;
    
    /**
     * Provides a dependency substitution rule for composite build,
     * that substitutes a project within the composite with any dependency with a matching ModuleIdentifier.
     */
    public class CompositeBuildDependencySubstitutions implements Action<DependencySubstitution> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNoClassifiersScope.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.FirContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.scopes.FirDelegatingContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassifierSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 937 bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirExcludingNonInnerClassesScope.kt

     * Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
     */
    
    package org.jetbrains.kotlin.analysis.api.fir.scopes
    
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.FirContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.scopes.FirDelegatingContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.symbols.impl.FirClassifierSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

         * they represent, so, for example, {@code \n} becomes newline. If this is undesirable then {@link #expand(Map, Action)}
         * should be used to disable this behavior.
         *
         * @param properties reference-to-value map for substitution
         * @return this
         */
        ContentFilterable expand(Map<String, ?> properties);
    
        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirNonStaticMembersScope.kt

    import org.jetbrains.kotlin.fir.declarations.FirMemberDeclaration
    import org.jetbrains.kotlin.fir.declarations.utils.isInner
    import org.jetbrains.kotlin.fir.declarations.utils.isStatic
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.FirContainingNamesAwareScope
    import org.jetbrains.kotlin.fir.scopes.FirScope
    import org.jetbrains.kotlin.fir.symbols.impl.FirCallableSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. test/fixedbugs/issue54632.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The inliner would erroneously scan the caller function's body for
    // reassignments *before* substituting the inlined function call body,
    // which could cause false positives in deciding when it's safe to
    // transitively inline indirect function calls.
    
    package main
    
    func main() {
    	bug1()
    	bug2(fail)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 24 14:31:08 UTC 2022
    - 609 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

    import org.jetbrains.kotlin.fir.declarations.utils.classId
    import org.jetbrains.kotlin.fir.declarations.utils.isLocal
    import org.jetbrains.kotlin.fir.java.declarations.FirJavaClass
    import org.jetbrains.kotlin.fir.resolve.substitution.ConeSubstitutor
    import org.jetbrains.kotlin.fir.scopes.*
    import org.jetbrains.kotlin.fir.symbols.impl.*
    import org.jetbrains.kotlin.name.Name
    import org.jetbrains.kotlin.name.SpecialNames
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/selectors/ResolvableSelectorState.java

    import org.gradle.internal.resolve.result.ComponentIdResolveResult;
    
    import javax.annotation.Nullable;
    
    public interface ResolvableSelectorState {
        /**
         * The raw component selector being resolved, after any substitution.
         */
        ComponentSelector getSelector();
    
        /**
         * The version constraint that applies to this selector, if any.
         * Will return null for a project selector.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top