Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,390 for includes_ (0.29 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProjectHelper.java

         * @param includes include patterns.
         * @param excludes exclude patterns.
         */
        void addResource(MavenProject project, String resourceDirectory, List<String> includes, List<String> excludes);
    
        /**
         * Add a test resource directory to the project.
         * @param project project reference.
         * @param resourceDirectory directory.
         * @param includes include patterns.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/IncludedBuildValidationIntegrationTest.groovy

            given:
            def buildC = singleProjectBuild("buildC")
            includeBuild(buildB)
            includeBuildAs(buildC, 'buildB')
    
            when:
            fails(buildA, "help")
    
            then:
            failure.assertHasDescription("Included build $buildC has build path :buildB which is the same as included build $buildB")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

            file('third/settings.gradle') << "include('t1')"
    
            when:
            run ":projects"
    
            then:
            outputContains """
    Root project 'my-root-project'
    No sub-projects
    
    Included builds:
    
    +--- Included build ':another'
    \\--- Included build ':third'"""
        }
    
        def "included builds are only shown in the context of the root project"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. pom.xml

    						<execution>
    							<phase>package</phase>
    							<goals>
    								<goal>shade</goal>
    							</goals>
    							<configuration>
    								<artifactSet>
    									<includes>
    										<include>org.dbflute:dbflute-runtime</include>
    									</includes>
    								</artifactSet>
    								<relocations>
    									<relocation>
    										<pattern>org.dbflute</pattern>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

    #include <cstddef>
    #include <cstdint>
    #include <memory>
    #include <utility>
    
    #include "absl/container/flat_hash_map.h"
    #include "absl/container/flat_hash_set.h"
    #include "llvm/ADT/DenseMap.h"
    #include "llvm/ADT/STLFunctionalExtras.h"
    #include "llvm/ADT/SetVector.h"
    #include "llvm/ADT/SmallPtrSet.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/files/fileTrees/kotlin/build.gradle.kts

    var tree: ConfigurableFileTree = fileTree("src/main")
    
    // Add include and exclude patterns to the tree
    tree.include("**/*.java")
    tree.exclude("**/Abstract*")
    
    // Create a tree using closure
    tree = fileTree("src") {
        include("**/*.java")
    }
    
    // Create a tree using a map
    tree = fileTree("dir" to "src", "include" to "**/*.java")
    tree = fileTree("dir" to "src", "includes" to listOf("**/*.java", "**/*.xml"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/pre-compiled-headers/groovy/build.gradle[tag=libraries]
    ----
    
    A precompiled header must be included in the same way for all files that use it. Usually, this means the header file should exist in the source set "headers" directory or in a directory included on the compiler include path.
    
    [[native_binaries:variants]]
    == Native Binary Variants
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildCommandLineArgsIntegrationTest.groovy

        }
    
        def "can include same build multiple times using --include-build and settings.gradle"() {
            given:
            dependency 'org.test:buildB:1.0'
    
            // Include 'buildB' twice via settings.gradle
            buildA.settingsFile << """
    includeBuild '${buildB.toURI()}'
    includeBuild '${buildB.toURI()}'
    """
            // Include 'buildB' twice via command-line arg
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 09 12:02:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  9. android/guava/pom.xml

      </dependencies>
      <build>
        <resources>
          <resource>
            <directory>..</directory>
            <includes>
              <include>LICENSE</include> <!-- copied from the parent pom because I couldn't figure out a way to make combine.children="append" work -->
              <include>proguard/*</include>
            </includes>
            <targetPath>META-INF</targetPath>
          </resource>
        </resources>
        <plugins>
          <plugin>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 11 16:37:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/files/fileTrees/groovy/build.gradle

    ConfigurableFileTree tree = fileTree(dir: 'src/main')
    
    // Add include and exclude patterns to the tree
    tree.include '**/*.java'
    tree.exclude '**/Abstract*'
    
    // Create a tree using closure
    tree = fileTree('src') {
        include '**/*.java'
    }
    
    // Create a tree using a map
    tree = fileTree(dir: 'src', include: '**/*.java')
    tree = fileTree(dir: 'src', includes: ['**/*.java', '**/*.xml'])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top