Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 73 for transform2 (0.41 sec)

  1. 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)
  2. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def "reuses file from its origin cache when transform is none"() {
            given:
            def file = testDir.file("other/thing.jar")
            _ * globalCacheLocations.isInsideGlobalCache(file.absolutePath) >> true
            jar(file)
            def classpath = DefaultClassPath.of(file)
            transformer.transform(classpath, None)
    
            when:
            def cachedClasspath = transformer.transform(classpath, None)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

    import org.gradle.internal.Either;
    import org.gradle.internal.classpath.transforms.ClassTransform;
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactory;
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForAgent;
    import org.gradle.internal.classpath.transforms.ClasspathElementTransformFactoryForLegacy;
    import org.gradle.internal.classpath.transforms.InstrumentingClassTransform;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                // 1. serialize a task that uses the transformed artifact
                // 2. serialize a task whose serialization triggers execution of that transform
                // 3. serialize another task that uses the transformed artifact
                // In addition, the 1st and 3rd tasks need to resolve different variants that share the same transform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/TransformFixture.groovy

                            return project.getConfigurations().create("transformed", transformed -> {
                                transformed.setCanBeConsumed(false);
                                transformed.setCanBeResolved(true);
                                transformed.extendsFrom(base);
    
                                transformed.getAttributes().attribute(ARTIFACT_TYPE_ATTRIBUTE, TXT_TYPE);
                            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/GreedyPatternRewriteDriver.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    
    namespace mlir {
    namespace TF {
    
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/registration/InstrumentationTransformRegisterer.java

    import org.gradle.api.internal.initialization.transform.InstrumentationAnalysisTransform;
    import org.gradle.api.internal.initialization.transform.MergeInstrumentationAnalysisTransform;
    import org.gradle.api.internal.initialization.transform.ProjectDependencyInstrumentingArtifactTransform;
    import org.gradle.api.internal.initialization.transform.services.CacheInstrumentationDataBuildService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/instrumentation-agent-services/src/main/java/org/gradle/internal/instrumentation/agent/DefaultClassFileTransformer.java

                return null;
            }
        }
    
        public static boolean tryInstall() {
            // Installing the same transformer multiple times is very problematic, so additional correctness check is worth it.
            if (!INSTALLED.compareAndSet(false, true)) {
                throw new IllegalStateException("The transformer is already installed in " + DefaultClassFileTransformer.class.getClassLoader());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Applies automatic space to depth transform for the first or frontier convolutions consume host inputs on TPU.";
    
      let description = [{
        Automatic space to depth transform is done by adding space to depth transform op after host input
        and applying space to depth transform for the first convolution and its backprop filter on TPU.
    
        For example, original program:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

        public enum MarkerResource {
            // The transformed marker resource is an empty file to reduce archive size in the most common case.
            TRANSFORMED(new byte[0]),
            // Not transformed marker resource is a 1-byte file with a single "N" symbol.
            NOT_TRANSFORMED(new byte[]{'N'});
    
            public static final String RESOURCE_NAME = TransformReplacer.class.getName() + ".transformed";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top