Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,134 for transformTo (0.13 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/ProblemTransformer.java

         *
         * @param problem the problem to transform
         * @param id the operation id associated with the problem
         * @return the transformed problem
         */
        Problem transform(Problem problem, OperationIdentifier id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    package org.gradle.internal.classpath.transforms;
    
    import org.gradle.internal.classpath.ClasspathBuilder;
    import org.gradle.internal.classpath.ClasspathEntryVisitor;
    import org.gradle.internal.classpath.ClasspathWalker;
    import org.gradle.internal.classpath.types.InstrumentationTypeRegistry;
    
    import java.io.File;
    import java.io.IOException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
         */
        String getArtifactName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/BaseClasspathElementTransform.java

            this.typeRegistry = typeRegistry;
            this.transform = transform;
        }
    
        @Override
        public final void transform(File destination) {
            resultBuilder().accept(destination, builder -> {
                try {
                    visitEntries(builder);
                } catch (FileException e) {
                    // Badly formed archive, so discard the contents and produce an empty JAR
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 14 09:24:02 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/transform/Transforms.kt

     */
    
    package org.gradle.internal.serialize.codecs.dm.transform
    
    import org.gradle.api.file.FileCollection
    import org.gradle.api.internal.artifacts.transform.BoundTransformStep
    import org.gradle.api.internal.artifacts.transform.DefaultTransformDependencies
    import org.gradle.api.internal.artifacts.transform.DefaultTransformUpstreamDependenciesResolver
    import org.gradle.api.internal.artifacts.transform.TransformDependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

            this.shouldLoadTransformedClass = shouldLoadTransformedClass;
            this.transform = transform;
            this.source = source;
            this.typeRegistry = typeRegistry;
        }
    
        @Override
        protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
            if (shouldLoadTransformedClass.test(name)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/tests/device-transform-nnapi.mlir

    // RUN: tac-opt-all-backends -tfl-device-transform-nnapi %s -split-input-file -verify-diagnostics | FileCheck %s
    
    func.func @mean_4d_keepdim(%arg0: tensor<1x48x48x512xf32>) -> tensor<1x1x1x512xf32> {
      %cst = arith.constant dense<[1, 2]> : tensor<2xi32>
      %0 = "tfl.mean"(%arg0, %cst) {keep_dims = true} : (tensor<1x48x48x512xf32>, tensor<2xi32>) -> tensor<1x1x1x512xf32>
      func.return %0 : tensor<1x1x1x512xf32>
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                if (!JarUtil.isMultiReleaseJarManifest(parsedManifest)) {
                    // If the original JAR is not multi-release, we don't need the manifest in the transformed JAR at all.
                    return;
                }
                isMultiReleaseJar = true;
    
                // We want the transformed JAR to also be a proper multi-release JAR.
                // To do so it must have the "Multi-Release: true" attribute.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/FilterChain.java

                    }
                }
            });
        }
    
        public void add(final Transformer<String, String> transformer) {
            transformers.add(new Transformer<Reader, Reader>() {
                @Override
                public Reader transform(Reader reader) {
                    return new LineFilter(reader, transformer);
                }
            });
        }
    
        public void add(final Closure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 10:14:55 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ContentFilterable.java

        /**
         * <p>Expands property references in each file as it is copied. More specifically, each file is transformed using
         * Groovy's {@link groovy.text.SimpleTemplateEngine}. This means you can use simple property references, such as
         * <code>$property</code> or <code>${property}</code> in the file. You can also include arbitrary Groovy code in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:15 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top