Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for includes_ (0.21 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

         * which in turn depend on a plugin from another included build (:plugin-0).
         *
         * In addition, projects :a and :b also depend on the :plugins build for the model building plugin.
         **/
        def "projects are configured in parallel when projects use plugins from included builds and project scoped model is queried concurrently"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/mlir/tensorflow/transforms/BUILD

            "xla_validate_inputs.cc",
        ],
        hdrs = [
            "cluster_ops_by_policy.h",
            "collection_ops_util.h",
            "einsum.h",
            "passes.h",
        ],
        includes = ["include"],
        textual_hdrs = [
            "tf_device_passes.h.inc",
            "tf_passes.h.inc",
            "tf_savedmodel_passes.h.inc",
        ],
        visibility = ["//visibility:public"],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            @Override
            public boolean test(JavaClass input) {
                return INCLUDES.test(input.getPackageName()) && !EXCLUDES.test(input.getPackageName());
            }
    
            private static Set<String> parsePackageMatcher(String packageList) {
                return Arrays.stream(packageList.split(":"))
                    .map(include -> include.replace("**/", "..").replace("/**", "..").replace("/*", "").replace("/", "."))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/list.md

    # Bucket Metrics
    
    MinIO collects the following metrics at the bucket level.
    Each metric includes the ``bucket`` label to identify the corresponding bucket.
    Metrics may include one or more additional labels, such as the server that calculated that metric.
    
    These metrics can be obtained from any MinIO server once per collection by using the following URL:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

        def "build service registered as listener in an included build with no work is not restored"() {
            def onFinishMessage = "You won't see me!"
            withListenerBuildServicePlugin onFinishMessage
    
            def configurationCache = newConfigurationCacheFixture()
            createDir('included-build') {
                file('settings.gradle') << """
                    pluginManagement {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  7. pkg/workloadapi/workload.proto

      // The key is the NamespacedHostname string of the format namespace/hostname.
      map<string, PortList> services = 22;
    
      // A list of authorization policies applicable to this workload.
      // NOTE: this *only* includes Selector based policies. Namespace and global polices
      // are returned out of band.
      // Authorization policies are only valid for workloads with `addresses` rather than `hostname`.
      repeated string authorization_policies = 16;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromGroovyDslIntegrationTest.groovy

        }
    
        def "reports cross-project model access in composite build access to Gradle.#invocation"() {
            createDirs("a", "include")
            settingsFile << """
                include("a")
                includeBuild("include")
            """
            file("include/build.gradle") << """
                gradle.${invocation}.allprojects { if (it.path == ":") println(it.buildDir) }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

            }
    
            /**
             * Specifies the type of paths to include in the result. This is a convenience method for
             * {@link #pathTypeFilter(Predicate)} using {@link Collection#contains(Object)} as the filter.
             *
             * @param desiredTypes the type of paths to include in the result
             * @return {@code this} for method call chaining
             */
            @Nonnull
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            given:
            file("settings.gradle.dcl") << """
                rootProject.name = "test"
                include(":a")
                include(":b")
            """
    
            file("a/build.gradle.dcl") << " !%@ unpassable crappy crap"
    
            file("b/build.gradle.dcl") << ""
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top