Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 275 for imposes (0.14 sec)

  1. src/cmd/go/internal/modload/buildlist.go

    	if len(add) != 0 {
    		// add should be empty in workspace mode because workspace mode implies
    		// -mod=readonly, which in turn implies no new requirements. The code path
    		// that would result in add being non-empty returns an error before it
    		// reaches this point: The set of modules to add comes from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. src/go/doc/reader.go

    type reader struct {
    	mode Mode
    
    	// package properties
    	doc       string // package documentation, if any
    	filenames []string
    	notes     map[string][]*Note
    
    	// imports
    	imports      map[string]int
    	hasDotImp    bool // if set, package contains a dot import
    	importByName map[string]string
    
    	// declarations
    	values []*Value // consts and vars
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

            where:
            version << SUPPORTED_WITH_GRADLE_8_CONFIGURATION_CACHE
        }
    
        @Requires(value = IntegTestPreconditions.NotConfigCached, reason = "Isolated projects implies config cache")
        def "can use plugin #version with isolated projects"() {
            given:
            def versionNumber = VersionNumber.parse(version)
    
            when:
            usePluginVersion version
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

            return new TransformFixture(
                """
                import ${Inject.name};
                import ${ExecOperations.name};
                ${snippets.imports}
                """,
    
                """
                @Inject
                public abstract ExecOperations getExecOperations();
                """,
    
                snippets.body
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

    import org.gradle.tooling.events.test.TestOutputEvent
    
    @TargetGradleVersion('>=6.0')
    class TestOutputCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
    
        def "test execution exposes test output"() {
            when:
            runTestAndCollectProgressEvents()
            def events = getOutputEvents()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

            } else {
                foreignImports.put("", classRealmManager.getMavenApiRealm());
            }
    
            if (parent != null && imports != null) {
                for (String parentImport : imports) {
                    foreignImports.put(parentImport, parent);
                }
            }
    
            return foreignImports;
        }
    
        public <T> T getConfiguredMojo(Class<T> mojoInterface, MavenSession session, MojoExecution mojoExecution)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/release/notes.md

    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    <<<FILL IN CONTEXT FOR KEY AREA>>>
    Example:
    > The [configuration cache](userguide/configuration_cache.html) improves build performance by caching the result of
    > the configuration phase. Using the configuration cache, Gradle can skip the configuration phase entirely when
    > nothing that affects the build configuration has changed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

            val trace = tracingCodeResolver(DefaultOperationGenerationId.finalEvaluation, analysisStatementFilter)
                .apply { resolve(analysisSchema, languageModel.imports, languageModel.topLevelBlock) }
                .trace
            val document = languageModel.toDocument()
            val resolution = resolutionContainer(analysisSchema, trace, document)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

            val packages = packageHeader(tree, packageNode)
            val imports = importNodes.map { import(tree, it) }
            val statements = scriptNodes.map { statement(tree, it) }
    
            val headerFailures = collectFailures(packages + imports)
    
            return LanguageTreeResult(
                imports = imports.filterIsInstance<Element<Import>>().map { it.element },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         */
        void maybeDiscardStateRequiredForGraphResolution();
    
        /**
         * Sets whether or not any configuration resolution is final and the state required for resolution can be
         * discarded.  Setting this to true implies that the configuration may be re-resolved again in the future.
         *
         * Defaults to false.
         */
        void setKeepStateRequiredForGraphResolution(boolean keepStateRequiredForGraphResolution);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top