Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 633 for composite_ (0.19 sec)

  1. platforms/software/version-control/src/main/java/org/gradle/vcs/internal/DefaultVcsMappingsStore.java

            return null;
        }
    
        private void applyTo(VcsMappingInternal mapping) {
            Actions.composite(rootVcsMappings).execute(mapping);
            if (!mapping.hasRepository()) {
                Set<VersionControlSpec> resolutions = new HashSet<>();
                for (Gradle gradle : vcsMappings.keySet()) {
                    Actions.composite(vcsMappings.get(gradle)).execute(mapping);
                    if (mapping.hasRepository()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/build_defs.bzl

            src,
            deps = [],
            tags = [],
            test = False):
        """gen_op_libraries() generates all cc and py libraries for composite op source.
    
        Args:
            name: used as the name component of all the generated libraries.
            src: File contains the composite ops.
            deps: Libraries the 'src' depends on.
            tags:
            test:
        """
        if not src.endswith(".py") or name == src[:-3]:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleCompositeBuildGroupedTaskFunctionalTest.groovy

            """
            file("$PROJECT_A_NAME/src/main/java/MyClass.java") << javaSourceFile()
            file("$PROJECT_B_NAME/src/main/java/MyClass.java") << javaSourceFile()
        }
    
        def "can group task output in composite build"() {
            when:
            def result = executer.inDirectory(file(PROJECT_B_NAME)).withTasks('compileJava').run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4932.go

    // compiledir
    
    // Copyright 2013 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 4932: regression in export of composite literals.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:42:03 UTC 2013
    - 251 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/BUILD

            "@llvm-project//mlir:SCFDialect",
            "@llvm-project//mlir:ShapeDialect",
            "@llvm-project//mlir:Support",
            "@pybind11",
        ],
    )
    
    py_strict_library(
        name = "composite",
        srcs = ["python/composite.py"],
        srcs_version = "PY3",
    )
    
    py_strict_library(
        name = "tfr_gen",
        srcs = ["python/tfr_gen.py"],
        srcs_version = "PY3",
        deps = [
            ":tfr_wrapper",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Task.java

         * @since 1.0-milestone-3
         */
        String getPath();
    
        /**
         * Returns the path of this task within the build tree. This is a unique name for this task within the composite build.
         *
         * @return The path of this task in the composite build.
         * @throws org.gradle.tooling.model.UnsupportedMethodException When the target Gradle version does not support this method.
         * @since 8.2
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/nms_utils.h

    namespace TFL {
    
    // Abstracts the conversion of the padded NMS composite function.
    class ConvertNMSPaddedFunc {
     public:
      explicit ConvertNMSPaddedFunc(func::FuncOp func) : func_(func) {}
    
      void RewriteFunc();
    
      LogicalResult VerifySignature();
    
     private:
      func::FuncOp func_;
    };
    
    // Abstracts the conversion of the SSD post-processing composite function to
    // TFLite.
    class ConvertSSDPostProcessFunc {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/settings.gradle

    rootProject.name = 'consumer'
    
    include 'my-greeting-app'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 137 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/composite-builds/basic/kotlin/settings.gradle.kts

    rootProject.name = "my-composite"
    
    includeBuild("my-app")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 83 bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskDependencyIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    
    /**
     * Tests for composite build delegating to tasks in an included build.
     */
    class CompositeBuildTaskDependencyIntegrationTest extends AbstractCompositeBuildIntegrationTest {
        BuildTestFile buildB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top