Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 568 for transformAction (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/TransformedArtifact.java

    import org.apache.maven.artifact.DefaultArtifact;
    import org.apache.maven.internal.transformation.TransformationFailedException;
    import org.apache.maven.model.building.ModelBuildingException;
    import org.apache.maven.project.MavenProject;
    import org.eclipse.aether.RepositorySystemSession;
    
    /**
     * Transformed artifact is derived with some transformation from source artifact.
     *
     * @since TBD
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

        buildscriptCompilation --> buildscriptClasses(Buildscript classes*)
        buildscriptClasses --> buildscriptClasspath
    ```
    
    
    #### Transformation of plugins classpath
    
    The transformation of plugins classpath is done with Artifact transforms. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  3. pkg/kube/krt/collection.go

    }
    
    // collectionDependencyTracker tracks, for a single transformation call, all dependencies registered.
    // These are inserted on each call to Fetch().
    // Once the transformation function is complete, the set of dependencies for the provided input will be replaced
    // with the set accumulated here.
    //
    // Note: this is used instead of passing manyCollection to the transformation function directly because we want to build up some state
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    import static org.gradle.internal.classpath.transforms.MrJarUtils.isInUnsupportedMrJarVersionedDirectory;
    
    /**
     * Transformation for legacy instrumentation when transformed JARs are part of the classpath.
     * This is still used when TestKit and TAPI run Gradle in embedded or debug mode.
     * <p>
     * This transformation filters out not yet supported versioned directories of the multi-release JARs.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/ir/QuantOps.td

    // A QuantizeCast (qcast) represents a potential type shift from a quantizable
    // type to a quantized type.
    //
    // At runtime, a qcast will apply the transformation expressed by its
    // operand and result type. For flexibility during transformation, it is also
    // possible to have a qcast that performs no transformation (both its
    // operand and result type are quantizable).
    //
    // A qcast will typically originate from either:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 03:10:59 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/groovy/ast-transformation/src/main/groovy/MyASTTransformation.groovy

    @GroovyASTTransformation(phase = CompilePhase.CANONICALIZATION)
    public class MyASTTransformation extends AbstractASTTransformation {
        @Override
        public void visit(ASTNode[] nodes, SourceUnit source) {
            println "AST transformation!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 365 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/value/metrics.go

    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "transformation_operations_total",
    			Help:           "Total number of transformations. Successful transformation will have a status 'OK' and a varied status string when the transformation fails. This status and transformation_type fields may be used for alerting on encryption/decryption failure using transformation_type from_storage for decryption and to_storage for encryption",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/base-services-groovy/src/test/groovy/org/gradle/api/internal/coerce/StringToEnumTransformerTest.groovy

            [TestEnum]         | ["abc"]        | [TestEnum.ABC]        | "one arg"
            [TestEnum, String] | ["abc", "abc"] | [TestEnum.ABC, "abc"] | "two args"
        }
    
        def "returns original args when no transformation is required - #desc"() {
            def typesArray = types.collect { new CachedClass(it, null) } as CachedClass[]
            def argsArray = args as Object[]
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/QuantOps.td

    // A QuantizeCast (qcast) represents a potential type shift from a quantizable
    // type to a quantized type.
    //
    // At runtime, a qcast will apply the transformation expressed by its
    // operand and result type. For flexibility during transformation, it is also
    // possible to have a qcast that performs no transformation (both its
    // operand and result type are quantizable).
    //
    // A qcast will typically originate from either:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 13 12:46:08 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/groovy/compilationAvoidance/kotlin/ast-transformation/src/main/groovy/MyASTTransformation.groovy

    @GroovyASTTransformation(phase = CompilePhase.CANONICALIZATION)
    public class MyASTTransformation extends AbstractASTTransformation {
        @Override
        public void visit(ASTNode[] nodes, SourceUnit source) {
            println "AST transformation!"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 365 bytes
    - Viewed (0)
Back to top