Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,957 for transformTo (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/PropertiesTransformer.java

         * Adds an action to be executed when properties are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super Properties> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a properties object.  This will modify the
         * original.
         * @param original the properties to transform
         * @return the transformed properties
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. subprojects/core-api/src/main/java/org/gradle/internal/Transformers.java

         * @param <O> The type of the transformed object
         * @param <I> The type of the object to be transformed
         * @return A transformer that simply type casts the input to the given output type.
         */
        public static <O, I> Transformer<O, I> cast(Class<O> outputType) {
            return new CastingTransformer<O, I>(outputType);
        }
    
        //just returns the original object
        public static <T> Transformer<T, T> noOpTransformer() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. src/main/resources/crawler/transformer.xml

    		</postConstruct>
    	</component>
    
    	<component name="fessFileTransformer" class="org.codelibs.fess.crawler.transformer.FessFileTransformer" instance="singleton">
    		<property name="name">"fessFileTransformer"</property>
    	</component>
    
    	<component name="fessStandardTransformer" class="org.codelibs.fess.crawler.transformer.FessStandardTransformer" instance="singleton">
    		<property name="name">"fessStandardTransformer"</property>
    	</component>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 10 03:35:10 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    void beforeTransformExecution(Describable transformer, Describable subject) {
                        println "Before transformer \${transformer.displayName} on \${subject.displayName}"
                    }
    
                    @Override
                    void afterTransformExecution(Describable transformer, Describable subject) {
                        println "After transformer \${transformer.displayName} on \${subject.displayName}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.cc

    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/transforms.h"
    
    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/drop_savedmodel_semantics.h"
    #include "tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 04:34:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/norm/transform.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import (
    	"unicode/utf8"
    
    	"golang.org/x/text/transform"
    )
    
    // Reset implements the Reset method of the transform.Transformer interface.
    func (Form) Reset() {}
    
    // Transform implements the Transform method of the transform.Transformer
    // interface. It may need to write segments of up to MaxSegmentSize at once.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 2.4K bytes
    - Viewed (0)
Back to top