Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,353 for necessarily (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

           */
          return;
        }
    
        /*
         * Only under Windows (or hypothetically when running with some other non-POSIX, ACL-based
         * filesystem) does our prod code look up the username. Thus, this test doesn't necessarily test
         * anything interesting under most environments. Still, we can run it (except for Android, at
         * least old versions), so we mostly do. This is useful because we don't actually run our CI on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

            fails ':a:pingServer'
    
            then:
            failure.assertHasCause('b failed')
            failure.assertHasCause('c failed')
        }
    
        def "tasks are executed when they are ready and not necessarily alphabetically"() {
            buildFile << """
                tasks.getByPath(':b:pingA').dependsOn(':a:pingA')
                tasks.getByPath(':b:pingC').dependsOn([':b:pingA', ':b:pingB'])
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. architecture/environments/operator.md

    function in the Istio control plane without necessarily being tied to any one component that runs in a Deployment.
    Component settings are those that necessarily refer to a particular Deployment or Service. For example, the number
    of Pilot replicas is a component setting, because it refers to a component which is a Deployment in the
    cluster. Most K8s platform settings are necessarily component settings.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

         */
        public interface PlannedNode {
    
            NodeIdentity getNodeIdentity();
    
            /**
             * Returns the dependencies of this node.
             * <p>
             * Note that dependencies are not necessarily located in the same execution plan.
             */
            List<? extends NodeIdentity> getNodeDependencies();
    
        }
    
        /**
         * Identity of a local task node in the execution graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top