Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,912 for necessarily (0.82 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

     *
     * @since 4.10
     */
    public interface CompilationDetails {
        /**
         * Returns the details of the compilation task for this binary. This is the task that should be run to produce the object files, but may not necessarily be the task that compiles the source files. For example, the task may perform some post processing of the object files.
         */
        Task getCompileTask();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

         * A "file source" is some opaque source of files that is not a full {@link FileCollection}.
         *
         * <p>Note that this method is not necessarily called immediately before one of the visit methods, as some collections may be
         * resolved in parallel. However, all visiting is performed sequentially and in order.
         * This method is also called sequentially and in order.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/testing-dependencies.md

    This provider might be charging you per request, and calling it might take some extra time than if you had a fixed mock user for tests.
    
    You probably want to test the external provider once, but not necessarily call it for every test that runs.
    
    In this case, you can override the dependency that calls that provider, and use a custom dependency that returns a mock user, only for your tests.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependencySpec.java

         * @return this
         *
         * @since 7.2
         */
        default PluginDependencySpec version(Provider<String> version) {
            // providers used in plugins block are necessarily at configuration time
            return this.version(version.get());
        }
    
        /**
         * Specifies whether the plugin should be applied to the current project. Otherwise it is only put
         * on the project's classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocModularizedJavaIntegrationTest.groovy

        def "can build javadoc from modularized java with exclusions"() {
            testBuildFile << """
                tasks.withType(Javadoc) {
                    exclude("test/internal")
                    // This shouldn't be necessarily, but is a workaround for now
                    options.addPathOption('-source-path').value.add(file('src/main/java'))
                }
            """
    
            when:
            succeeds("javadoc")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationTimeResolveIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.test.fixtures.maven.MavenModule
    
    /**
     * Tests for resolving dependencies at configuration-time in a composite build.
     * These tests demonstrate actual behaviour, not necessarily desired behaviour.
     */
    class CompositeBuildConfigurationTimeResolveIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
        BuildTestFile buildC
    
        MavenModule publishedModuleB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 27 11:26:43 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body-fields.md

    !!! warning
        Extra keys passed to `Field` will also be present in the resulting OpenAPI schema for your application.
        As these keys may not necessarily be part of the OpenAPI specification, some OpenAPI tools, for example [the OpenAPI validator](https://validator.swagger.io/), may not work with your generated schema.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

         */
        public val defaultExpressionInfo: DefaultExpressionInfo?,
    
        /**
         * A list of expressions that return a value.
         *
         * Returned expressions are not necessarily [KtReturnExpression]s.
         * For instance, implicit return from a lambda can be an arbitrary expression.
         */
        public val valuedReturnExpressions: List<KtExpression>,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-tooling-builders/src/main/kotlin/org/gradle/declarative/dsl/tooling/builders/DeclarativeSchemaModelBuilder.kt

        override fun create(target: BuildState): Any {
            // Make sure the project tree has been loaded and can be queried (but not necessarily configured)
            target.ensureProjectsLoaded()
    
            val schemaBuilder = GradleProcessInterpretationSchemaBuilder(softwareTypeRegistry)
    
            val settings = target.mutableModel.settings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicMethodLookupIntegrationTest.groovy

    assert contacts() == null
    assert contacts("a") == "a"
    """
    
            expect:
            succeeds()
        }
    
        // Documents actual behaviour for backwards compatibility, not necessarily desired behaviour
        @Requires(
            value = IntegTestPreconditions.NotIsolatedProjects,
            reason = "Exercises IP incompatible behavior: Groovy method inheritance"
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 17:01:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top