Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,216 for transforms (0.15 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/api/internal/PropertyListTransformer.java

         * @param action the action to add
         */
        public void addAction(Action<? super T> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a property list object. This will modify the
         * original.
         * @param original the property list to transform
         * @return the transformed property list
         */
        @Override
        public T transform(T original) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 17:10:32 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/CachedClasspathTransformer.java

            BuildLogic, None
        }
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, StandardTransform transform);
    
        /**
         * Transforms a classpath to a classpath with the given transformations applied.
         */
        ClassPath transform(ClassPath classPath, ClassTransform additional);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

             * @param transforms The remaining transforms which may be prepended to {@code chain} to produce a solution.
             */
            public ChainState(@Nullable ChainNode chain, ImmutableAttributes requested, ImmutableFilteredList<TransformRegistration> transforms) {
                this.chain = chain;
                this.requested = requested;
                this.transforms = transforms;
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/artifact_transforms.adoc

    == Artifact transform selection and execution
    
    As described above, when Gradle resolves a configuration and a dependency in the configuration does not have a variant with the requested attributes, Gradle tries to find a chain of artifact transforms to create the variant.
    The process of finding a matching chain of artifact transforms is called _artifact transform selection_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixture.java

         * Returns grouped output for the given transformer type and transform subject.
         */
        public GroupedTransformOutputFixture transform(String transformer, String subject) {
            List<GroupedTransformOutputFixture> foundTransforms = transforms.values().stream()
                .filter(transform -> transform.getTransformer().equals(transformer) && transform.getSubject().equals(subject))
                .collect(Collectors.toList());
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/BUILD

            "transforms/legalize_hashtables.cc",
            "transforms/legalize_jax_random.cc",
            "transforms/legalize_tensorlist.cc",
            "transforms/legalize_tf.cc",
            "transforms/legalize_tf_while.cc",
            "transforms/legalize_variables.cc",
            "transforms/lower_static_tensor_list.cc",
            "transforms/optimize_functional_ops.cc",
            "transforms/partitioned_topological_sort.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfrt/BUILD

            "transforms/deduplicate_if_result_pass.cc",
            "transforms/fuse_tpu_compile_and_execute_ops.cc",
            "transforms/insert_tensor_copy.cc",
            "transforms/lower_saved_model.cc",
            "transforms/merge_tf_if_ops.cc",
            "transforms/optimize.cc",
            "transforms/optimize_tf_control_flow_side_effect.cc",
            "transforms/passes.cc",
            "transforms/reconfig_batch_op.cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 19:04:21 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCacheUnusedVersionCleanupIntegrationTest.groovy

            requireOwnGradleUserHomeDir("messes with caches")
            transforms3Dir = userHomeCacheDir.createDir("${CacheLayout.TRANSFORMS.name}-3")
            transforms4Dir = userHomeCacheDir.createDir("${CacheLayout.TRANSFORMS.name}-4")
            currentTransformsDir = gradleVersionedCacheDir.file(CacheLayout.TRANSFORMS.name).createDir()
            currentModulesDir = userHomeCacheDir.file(CacheLayout.MODULES.key).createDir()
            modulesGcFile.createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 12:09:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

         * Transforms the given object, and returns the transformed value.
         *
         * @param in The object to transform.
         * @return The transformed object.
         */
        OUT transform(IN in);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/BUILD

            "@stablehlo//:register",
            "@stablehlo//:stablehlo_ops",
        ],
        alwayslink = 1,
    )
    
    cc_library(
        name = "transforms",
        srcs = [
            "transforms/transforms.cc",
        ],
        hdrs = [
            "transforms/transforms.h",
        ],
        copts = [
            "-Ithird_party",
        ],
        deps = [
            ":drop_savedmodel_semantics",
            ":fold_broadcast_pass",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 24.9K bytes
    - Viewed (0)
Back to top