Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 153 for excluded (0.34 sec)

  1. docs/en/docs/advanced/path-operation-advanced-configuration.md

    !!! warning
        If you do this, you have to make sure each one of your *path operation functions* has a unique name.
    
        Even if they are in different modules (Python files).
    
    ## Exclude from OpenAPI
    
    To exclude a *path operation* from the generated OpenAPI schema (and thus, from the automatic documentation systems), use the parameter `include_in_schema` and set it to `False`:
    
    ```Python hl_lines="6"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        val stageName = StageName.values().first { it.stageName == stage.stageName.stageName }
        // See gradlebuild.basics.FlakyTestStrategy
        return if (stageName < StageName.READY_FOR_RELEASE) "exclude" else "include"
    }
    
    fun getTestTaskName(testCoverage: TestCoverage, subprojects: List<String>): String {
        val testTaskName =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. testing/integ-test/build.gradle.kts

        integTestImplementation(libs.slf4jApi)
        integTestImplementation(libs.guava)
        integTestImplementation(libs.ant)
        integTestImplementation(libs.jsoup)
    
        integTestImplementation(libs.samplesCheck) {
            exclude(group = "org.codehaus.groovy", module = "groovy-all")
        }
        integTestImplementation(testFixtures(project(":model-core")))
    
        crossVersionTestImplementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/build.gradle.kts

        // TODO Figure out why and fix it - Move the two deps below to implementation and api and run ProjectTheExtensionCrossVersionSpec
        compileOnly(libs.eclipseSisuPlexus) {
            exclude(module = "cdi-api") // To respect the Maven exclusion
        }
        compileOnly(libs.maven3Compat)
    
        // 3 dependencies below are recommended as implementation but doing so adds them to the distribution
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleBuildDocumentationPlugin.java

                // Filter out any non-public APIs
                f.exclude(PublicApi.INSTANCE.getExcludes());
            }));
            extension.getKotlinDslSource().from(sourcesPath.getIncoming().artifactView(v -> v.lenient(true)).getFiles().getAsFileTree().matching(f -> {
                f.include(PublicKotlinDslApi.INSTANCE.getIncludes());
                // Filter out any non-public APIs
                f.exclude(PublicKotlinDslApi.INSTANCE.getExcludes());
            }));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 20:04:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r410/GradleBuildModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.gradle.GradleBuild
    
    class GradleBuildModelCrossVersionSpec extends ToolingApiSpecification {
        @TargetGradleVersion(">=4.10")
        def "nested included builds are visible only in the model of the containing build"() {
            given:
            def rootDir = 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)
  7. platforms/core-configuration/configuration-cache/build.gradle.kts

        from(zipTree(configurationCacheReportPath.elements.map { it.first().asFile })) {
            into("org/gradle/internal/cc/impl/problems")
            exclude("META-INF/**")
        }
    }
    
    // The integration tests in this project do not need to run in 'config cache' mode.
    tasks.configCacheIntegTest {
        enabled = false
    }
    
    dependencies {
        api(project(":base-services"))
        api(project(":build-option"))
        api(projects.concurrent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginDependenciesResolver.java

         *
         * @param plugin The plugin for which to resolve the dependencies, must not be {@code null}.
         * @param pluginArtifact The plugin's main artifact, may be {@code null}.
         * @param dependencyFilter A filter to exclude artifacts from resolution (but not collection), may be {@code null}.
         * @param repositories The plugin repositories to use for resolving the plugin artifacts, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/build.gradle.kts

    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    }
    
    tasks {
        withType<Test>().configureEach {
            if (project.isBundleGroovy4) {
                exclude("org/gradle/testkit/runner/enduser/GradleRunnerSamplesEndUserIntegrationTest*") // cannot be parameterized for both Groovy 3 and 4
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

    #include "tensorflow/core/framework/attr_value.pb.h"
    #include "tensorflow/core/platform/errors.h"
    
    namespace tensorflow {
    
    // Converts non func AttrValue proto into an MLIR attribute. Func attribute is
    // exclused in this function because the function might be renamed when the
    // function definition is imported.
    absl::StatusOr<mlir::Attribute> ConvertNonFuncAttributeValue(
        const AttrValue& value, mlir::Builder* builder) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top