Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for substitutions (0.18 sec)

  1. 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)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/DependencyArtifactSelector.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import javax.annotation.Nullable;
    
    /**
     * Details about an artifact selection in the context of a dependency substitution.
     *
     * Artifact selections are handy as a migration path from the Maven or Ivy ecosystem,
     * where different "variants" are actually represented as different artifacts, with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

         */
        CONFLICT_RESOLUTION("conflict resolution"),
    
        /**
         * This component was selected as a participant of a composite.
         */
        COMPOSITE_BUILD("composite build substitution"),
    
        /**
         * This component was selected because another version was rejected by a rule
         */
        REJECTION("rejection"),
    
        /**
         * This component was selected because of a dependency constraint
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ArtifactSelectionDetails.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Details about artifact dependency substitution: this class gives access to the
     * original dependency requested artifacts, if any, and gives the opportunity to
     * replace the original requested artifacts with other artifacts.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 15:47:10 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Classpath.java

            }
        }
    
        /*
         * Gradle 5.6 introduced closed project substitution for Buildship: https://github.com/gradle/gradle/pull/9405
         * The feature is built upon the EclipseProject TAPI model which is based on the result of the Eclipse plugin.
         *
         * To distinguish between different task dependencies the closed project substitution feature had to change
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildIncludesMultiProjectProjectDependencyConflictResolutionIntegrationTest.groovy

     * where the multi-project build is included in a composite build that steers the build process. By this, the automatic substitution behavior of
     * replacing a binary dependency with an included project dependency (if available) independent of versions, is applied in the whole build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 16 07:51:10 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

         * }
         * ```
         *
         * Unfortunately, [symbol] for the `action("")` call will be pointing to the `Function1<P1, R>.invoke(p1: P1): R`, because we
         * intentionally unwrap use-site substitution overrides. Because of this, `symbol.name` will yield `"p1"`, and not `"bar"`.
         *
         * To overcome this problem, [name] property is introduced: it allows to get the intended name of the parameter,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top