Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for Transformed (0.39 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/InternalTransformer.java

    package org.gradle.internal;
    
    /**
     * Equivalent to {@code Transformer}, but does not declare nullability due to Java 6 restrictions.
     *
     * <p>A {@code Transformer} transforms objects of type.</p>
     *
     * <p>Implementations are free to return new objects or mutate the incoming value.</p>
     *
     * @param <OUT> The type the value is transformed to.
     * @param <IN> The type of the value to be transformed.
     */
    public interface InternalTransformer<OUT, 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. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            output.count("Transformed") == 2
            isTransformed("lib1.jar", "lib1.jar.value")
            isTransformed("lib2.jar", "lib2.jar.value")
    
            when:
            succeeds ":util:resolve", ":app:resolve"
    
            then:
            output.count("files 1: [lib1.jar.value, lib2.jar.value]") == 2
    
            output.count("Transformed") == 0
    
            where:
            type           | value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let description = [{
        This pass transforms functional control flow operations in the TensorFlow
        dialect to their region-based counterparts, i.e., `tf.If` is transformed to
        `tf.IfRegion` and `tf.While` is transformed to `tf.WhileRegion`.
    
        For example, this functional operation
    
        ```mlir
          %0 = "tf.If"(%arg0, %arg1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    }
                }
    
                configurations {
                    transformed
                }
    
                def intermediateFiles = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                dependencies {
                    transformed files(intermediateFiles)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	// to, the EncodeVersioner outputs the gvk the object will be
    	// converted to before persisted in etcd.
    	EncodeVersioner runtime.GroupVersioner
    	// Transformer allows the value to be transformed prior to persisting into etcd.
    	Transformer value.Transformer
    
    	// CompactionInterval is an interval of requesting compaction from apiserver.
    	// If the value is 0, no compaction will be issued.
    	CompactionInterval time.Duration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

                    builder.put(fileName, content)
                }
            }
            def transformed = transformer.transform(DefaultClassPath.of(jar), BuildLogic)
            def filtering = new FilteringClassLoader(getClass().classLoader, new FilteringClassLoader.Spec([Action.name, Instrumented.name], [], [], [], [], [], []))
            testClassLoader = new URLClassLoader(transformed.asURLArray, filtering)
            return testClassLoader.loadClass(cl.name)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

            if (classPath instanceof TransformedClassPath && !(this instanceof InstrumentingClassLoader)) {
                throw new IllegalArgumentException("Cannot build a non-instrumenting class loader " + name + " out of transformed class path");
            }
        }
    
        private VisitableURLClassLoader(String name, URL[] classpath, ClassLoader parent) {
            super(classpath, parent);
            this.name = name;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/DefaultCachedClasspathTransformer.java

            }
            ClasspathFileTransformer transformer = fileTransformerFor(transform);
            return parallelTransformExecutor.transformAll(
                urls,
                (url, seen) -> cachedURL(url, transformer, seen, InstrumentationTypeRegistry.empty())
            );
        }
    
        private ClassPath transformFiles(ClassPath classPath, ClasspathFileTransformer transformer) {
            return DefaultClassPath.of(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top