Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,249 for transformTo (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/Transformer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.scripts;
    
    import org.codehaus.groovy.control.CompilationUnit;
    
    public interface Transformer {
    
        void register(CompilationUnit compilationUnit);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 791 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. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/PlannedTransformStepIdentity.java

         * values for some of which have been changed by the transform.
         */
        Map<String, String> getTargetAttributes();
    
        /**
         * Capabilities of the variant of the transformed artifact.
         * <p>
         * Artifact transforms can only change attributes, so the capabilities remain unchanged throughout the transform chain.
         */
        List<? extends Capability> getCapabilities();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/internal/coerce/StringToEnumTransformerTest.groovy

        def transformer = new StringToEnumTransformer()
    
        static enum TestEnum {
            ABC, DEF
        }
    
        def "can transform enums correctly - #desc"() {
            def typesArray = types.collect { new CachedClass(it, null) } as CachedClass[]
            def argsArray = args as Object[]
    
            expect:
            transformer.transform(typesArray, argsArray).toList() == transformed
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/TransformersTest.groovy

            then:
            1 * action.execute("original")
    
            and:
            result == null
        }
    
        def "factory as transformer"() {
            def factory = Mock(Factory)
    
            when:
            def result = toTransformer(factory).transform("original")
    
            then:
            1 * factory.create() >> "transformed"
            result == "transformed"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/InstrumentingClasspathFileTransformer.java

                configHashFor(classpathElementTransformFactory, transform, gradleCoreInstrumentationTypeRegistry),
                classpathFileHasher);
            this.classpathElementTransformFactory = classpathElementTransformFactory;
            this.transform = transform;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:36:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

        protected final Transformer<? extends OUT, ? super IN> transformer;
    
        public TransformBackedProvider(
            @Nullable Class<OUT> type,
            ProviderInternal<? extends IN> provider,
            Transformer<? extends OUT, ? super IN> transformer
        ) {
            this.type = type;
            this.transformer = transformer;
            this.provider = provider;
        }
    
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top