Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 87 for imposes (0.26 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # 'go mod tidy' should by default diagnose the difference in dependencies as an
    # error, with useful suggestions about how to resolve it.
    
    cp go.mod go.mod.orig
    ! go mod tidy
    stderr '^go: example\.com/m imports\n\texample\.net/lazy imports\n\texample\.com/retract/incompatible loaded from example\.com/retract/incompatible@v1\.0\.0,\n\tbut go 1\.16 would select v2\.0\.0\+incompatible\n\n'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    # Go 1.16 selects a higher version (in which that package has been deleted).
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    stderr '^go: example\.com/m imports\n\texample\.net/deleted loaded from example\.net/deleted@v0\.1\.0,\n\tbut go 1\.16 would fail to locate it in example\.net/deleted@v0\.2\.0\n\n'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        integTestImplementation(libs.mockitoKotlin)
    
        testRuntimeOnly(project(":distributions-native")) {
            because("SimplifiedKotlinScriptEvaluator reads default imports from the distribution (default-imports.txt) and BuildType from platform-native is used in ProjectAccessorsClassPathTest.")
        }
    
        testFixturesImplementation(project(":base-services"))
        testFixturesImplementation(project(":core-api"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/PluginsInterpretationSequenceStep.kt

    import org.gradle.internal.declarativedsl.analysis.AnalysisStatementFilterUtils.isTopLevelElement
    import org.gradle.internal.declarativedsl.analysis.and
    import org.gradle.internal.declarativedsl.analysis.implies
    import org.gradle.internal.declarativedsl.common.gradleDslGeneralSchema
    import org.gradle.internal.declarativedsl.evaluationSchema.DefaultStepIdentifier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

            buildC.rootProject.name == "buildC"
            buildC.projects.size() == 1
            buildC.includedBuilds.empty
        }
    
        @TargetGradleVersion(">=4.10")
        def "root build model exposes all builds that participate in the composite when nested included builds are present"() {
            given:
            singleProjectBuildInRootFolder("root") {
                settingsFile << """
                    rootProject.name = 'root'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInPluginBuildScriptIntegrationTest.groovy

                    includeBuild('included')
                }
            """)
    
            def snippets = snippetsFactory.newSnippets(execOperationsFixture)
            testDirectory.file(file) << """
                ${snippets.imports}
                ${snippets.body}
            """
    
            when:
            configurationCacheFails(":help")
    
            then:
            failure.assertOutputContains("Hello")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

            @OptIn(ExperimentalContracts::class)
            private fun isMutabilityFlexibleType(lower: KaType, upper: KaType): Boolean {
                contract {
                    returns(true) implies (lower is KaNonErrorClassType)
                    returns(true) implies (upper is KaNonErrorClassType)
                }
                if (lower !is KaNonErrorClassType || upper !is KaNonErrorClassType) return false
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/format.go

    		if len(check.pkgPathMap[pkg.name]) > 1 {
    			return strconv.Quote(pkg.path)
    		}
    		return pkg.name
    	}
    	return ""
    }
    
    // markImports recursively walks pkg and its imports, to record unique import
    // paths in pkgPathMap.
    func (check *Checker) markImports(pkg *Package) {
    	if check.seenPkgMap[pkg] {
    		return
    	}
    	check.seenPkgMap[pkg] = true
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

        }
    }
    
    
    interface TypeRefContext {
        fun resolveRef(dataTypeRef: DataTypeRef): DataType
    }
    
    
    interface AnalysisContextView : TypeRefContext {
        val schema: AnalysisSchema
        val imports: Map<String, FqName>
        val currentScopes: List<AnalysisScopeView>
        val assignments: List<AssignmentRecord>
    }
    
    
    class SchemaTypeRefContext(val schema: AnalysisSchema) : TypeRefContext {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeImplementation.java

    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    
    import java.util.List;
    
    /**
     * Represents a resolved software type implementation including the public model type and the plugin that exposes it.
     */
    public interface SoftwareTypeImplementation<T> {
        String getSoftwareType();
    
        Class<? extends T> getModelPublicType();
    
        Class<? extends Plugin<Project>> getPluginClass();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top