Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,343 for necessarily (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

                }
            }
        }
    
        private static boolean isPresent(@Nullable Object value) {
            if (value instanceof Provider) {
                // carefully check for presence without necessarily resolving
                return ((Provider<?>) value).isPresent();
            }
            return value != null;
        }
    
        private static boolean hasConfigurableValue(@Nullable Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilder.java

                return model;
            }
            model = new DefaultGradleBuild();
            all.put(targetBuild, model);
    
            // Make sure the project tree has been loaded and can be queried (but not necessarily configured)
            targetBuild.ensureProjectsLoaded();
    
            GradleInternal gradle = targetBuild.getMutableModel();
            addProjects(targetBuild, model);
            addIncludedBuilds(gradle, model, all);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top