Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,117 for includes_ (0.27 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

        def "can consume non-consumable project configuration when substituted as a transitive dependency"() {
    
            file("included/settings.gradle") << """
                rootProject.name = "transitive"
            """
            file("included/build.gradle") << """
                group = "org"
    
                task myZip(type: Zip) {
                    archiveFileName = "transitive.zip"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
         * Add directories where the compiler should search for header files.
         */
        public void includes(Object includeRoots) {
            includes.from(includeRoots);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    2. By using the method `includeBuild` in `settings.gradle`.
    
    The following code snippet demonstrates the use of the settings file:
    
    ====
    include::sample[dir="snippets/developingPlugins/testingPlugins/kotlin/include-plugin-build",files="settings.gradle.kts[tags=include-build]"]
    include::sample[dir="snippets/developingPlugins/testingPlugins/groovy/include-plugin-build",files="settings.gradle[tags=include-build]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils_test.cc

    #include "tensorflow/cc/saved_model/fingerprinting_utils.h"
    
    #include <cstdint>
    #include <string>
    #include <vector>
    
    #include <gmock/gmock.h>
    #include <gtest/gtest.h>
    #include "absl/status/status.h"
    #include "absl/status/statusor.h"
    #include "absl/strings/str_cat.h"
    #include "absl/strings/string_view.h"
    #include "tensorflow/core/framework/graph.pb.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Such included builds will inherit the build cache configuration from the top level build, regardless of whether the included builds define build cache configuration themselves or not.
    
    The build cache configuration present for any included build is effectively ignored, in favour of the top level build's configuration.
    This also applies to any `buildSrc` projects of any included builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

         * List of class names that should be included in analysis. Names can use wildcards (* and ?). If left empty, all classes will be included. Defaults to an empty list.
         */
        @Nullable
        @Optional
        @Input
        public List<String> getIncludes() {
            return includes;
        }
    
        public void setIncludes(@Nullable List<String> includes) {
            this.includes = includes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  7. maven-core/pom.xml

                  <include>org.apache.maven.feature</include>
                  <include>org.apache.maven.graph</include>
                  <include>org.apache.maven.lifecycle</include>
                  <include>org.apache.maven.model</include>
                  <include>org.apache.maven.monitor</include>
                  <include>org.apache.maven.plugin</include>
                  <include>org.apache.maven.profiles</include>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

            assertStartEventHas(progressEvents[0], "CONFIGURE_ROOT_BUILD", 3)
            // We then configure included build c
            assertStartEventHas(progressEvents[1], "CONFIGURE_BUILD", 1)
            // End of included build
            assertSuccessfulFinishEventHas(progressEvents[2], "CONFIGURE_BUILD")
            // End of root build
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    #include <cstdint>
    #include <string>
    
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/Support/ErrorHandling.h"
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/BuiltinAttributes.h"  // from @llvm-project
    #include "mlir/IR/BuiltinOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    
    [[sec:java_library_usage]]
    == Usage
    
    To use the Java Library plugin, include the following in your build script:
    
    .Using the Java Library plugin
    ====
    include::sample[dir="snippets/java-library/quickstart/kotlin",files="build.gradle.kts[tags=use-plugin]"]
    include::sample[dir="snippets/java-library/quickstart/groovy",files="build.gradle[tags=use-plugin]"]
    ====
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
Back to top