Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,599 for _itable (0.13 sec)

  1. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            ]
        }
    
        def "configures runtimeClasspath"() {
            def mutable = AttributeTestUtil.attributesFactory().mutable()
            def attrs = Mock(HasConfigurableAttributes)
    
            when:
            services.configureAsRuntimeClasspath(attrs)
    
            then:
            1 * attrs.getAttributes() >> mutable
            0 * _
            mutable.asMap() == [
                (CATEGORY_ATTRIBUTE): named(Category, LIBRARY),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. maven-compat/src/main/resources/META-INF/maven/plugin.xml

              <required>true</required>
              <editable>false</editable>
              <description>The current MavenProject instance, which will have a new executionProject set after execution.</description>
            </parameter>
            <parameter>
              <name>session</name>
              <type>org.apache.maven.execution.MavenSession</type>
              <required>true</required>
              <editable>false</editable>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 28 09:19:32 UTC 2013
    - 9.3K bytes
    - Viewed (0)
  3. maven-core/lifecycle-executor.txt

            </parameter>
            <parameter>
              <name>excludeTransitive</name>
              <type>boolean</type>
              <required>false</required>
              <editable>true</editable>
            </parameter>
            <parameter>
              <name>includeArtifactIds</name>
              <type>java.lang.String</type>
              <required>false</required>
              <editable>true</editable>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 17:22:19 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/WrapUtil.java

        }
    
        /**
         * Wraps the given items in a mutable unordered set.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Set<T> toSet(T... items) {
            logDeprecation(7);
            Set<T> coll = new HashSet<T>();
            Collections.addAll(coll, items);
            return coll;
        }
    
        /**
         * Wraps the given items in a mutable domain object set.
         */
        @SafeVarargs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 28 16:04:22 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/lift_quantizable_spots_as_functions_with_quantization_specs.mlir

    // DISABLE-ALL-DOT-GENERAL-SAME: _entry_function = @composite_dot_general_fn_1
    // DISABLE-ALL-DOT-GENERAL-SAME: _original_entry_function
    // DISABLE-ALL-DOT-GENERAL-SAME: _quantization_method = "no_quantization { }"
    // DISABLE-ALL-DOT-GENERAL-SAME: _tfl_quant_trait = "fully_quantizable"
    
    // DISABLE-ALL-DOT-GENERAL: return %[[XLA_CALL_MODULE:.+]] : tensor<1x1x64xf32>
    // DISABLE-ALL-DOT-GENERAL: }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 18:09:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                          Enabled by default, set to nil to disable.
                        properties:
                          hostEndpoint:
                            description: HostEndpoint controls syncing nodes to host endpoints.
                              Disabled by default, set to nil to disable.
                            properties:
                              autoCreate:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

        forkEvery = 100
    // end::fork-every[]
    
    // tag::disable-reports[]
        reports.html.required = false
        reports.junitXml.required = false
    // end::disable-reports[]
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    }
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    
    // tag::fork-java[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  9. ci/official/wheel_test/WORKSPACE

    # buildifier: disable=load-on-top
    
    workspace(name = "wheel_test")
    
    # buildifier: disable=load-on-top
    
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    http_archive(
        name = "bazel_skylib",
        sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
        urls = [
            "https://storage.googleapis.com/mirror.tensorflow.org/github.com/bazelbuild/bazel-skylib/releases/download/1.3.0/bazel-skylib-1.3.0.tar.gz",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 05 22:27:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    When isolated projects is enabled, the configuration model of Gradle projects are "isolated" from each other.
    This means that build logic, such as build scripts or plugins, applied to a project cannot directly access the mutable state of another project.
    This allows configuration and tooling model creation for each project to safely run in parallel and the result cached and invalidated for each project independently.
    
    == Status as of Gradle 8.5
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top