Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,155 for Transform (0.31 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BuildDisplayInfo.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import groovy.transform.CompileStatic
    import groovy.transform.EqualsAndHashCode
    import groovy.transform.ToString
    
    @CompileStatic
    @EqualsAndHashCode
    @ToString
    class BuildDisplayInfo {
    
        final String projectName
        final String displayName
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TransformOperationMapper.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import org.gradle.api.internal.artifacts.transform.ExecutePlannedTransformStepBuildOperationDetails;
    import org.gradle.api.internal.artifacts.transform.TransformStepNode;
    import org.gradle.execution.plan.Node;
    import org.gradle.internal.build.event.BuildEventSubscriptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/IncrementalCppElement.java

        /**
         * Returns a transform that rename the before element to {@code renamed-} followed by the original name.
         */
        protected static Transform rename(CppSourceFileElement beforeElement) {
            return rename(beforeElement, AbstractRenameTransform.DEFAULT_RENAME_PREFIX);
        }
    
        protected static Transform rename(final CppSourceFileElement beforeElement, String renamePrefix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/canUseAstTransformThatReferencesGroovyTestCase/src/main/groovy/TestCaseTransform.java

    import groovy.test.GroovyTestCase;
    import org.codehaus.groovy.ast.ASTNode;
    import org.codehaus.groovy.ast.ClassNode;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.transform.ASTTransformation;
    import org.codehaus.groovy.transform.GroovyASTTransformation;
    
    @GroovyASTTransformation
    public class TestCaseTransform implements ASTTransformation {
        public void visit(ASTNode[] nodes, SourceUnit source) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/connection/CancellationExceptionTransformer.java

    public abstract class CancellationExceptionTransformer {
    
        private static final CancellationExceptionTransformer NO_OP = new CancellationExceptionTransformer() {
            @Override
            public RuntimeException transform(RuntimeException e) {
                return e;
            }
        };
    
        static CancellationExceptionTransformer transformerFor(VersionDetails versionDetails) {
            if (versionDetails.honorsContractOnCancel()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

            ].combinations()
        }
    
        def "using #snippetsFactory.summary in transform action with #task of buildSrc build is not a problem"(SnippetsFactory snippetsFactory, String task) {
            given:
            createDir("buildSrc") {
                getTransformFixture(snippetsFactory.newSnippets(execOperationsFixture)).tap {
                    withTransformPlugin(dir("transform-plugin"))
                    withJavaLibrarySubproject(dir("subproject"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-profile/src/test/groovy/org/gradle/profile/ProfileReportRendererTest.groovy

    </table>
    </div>
    <div class="tab" id="tab3">
    <h2>Artifact Transforms</h2>
    <table>
    <thead>
    <tr>
    <th>Transform</th>
    <th class="numeric">Duration</th>
    </tr>
    </thead>
    <tr>
    <td>All transforms</td>
    <td class="numeric">31.000s</td>
    </tr>
    <tr>
    <td>some other transform</td>
    <td class="numeric">19.000s</td>
    </tr>
    <tr>
    <td>some transform</td>
    <td class="numeric">12.000s</td>
    </tr>
    </table>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 13:41:06 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractGroovyCompilerIntegrationSpec/canUseThirdPartyAstTransform/src/main/java/MagicInterfaceTransform.java

    import org.codehaus.groovy.ast.ASTNode;
    import org.codehaus.groovy.ast.ClassNode;
    import org.codehaus.groovy.control.SourceUnit;
    import org.codehaus.groovy.transform.ASTTransformation;
    import org.codehaus.groovy.transform.GroovyASTTransformation;
    
    @GroovyASTTransformation
    public class MagicInterfaceTransform implements ASTTransformation {
        public void visit(ASTNode[] nodes, SourceUnit source) {
            ClassNode clazz = (ClassNode) nodes[1];
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 514 bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/AbstractMinimalProviderTest.groovy

            mapped.get() == "[123]"
        }
    
        def "can chain mapped providers"() {
            def transformer1 = Stub(Transformer)
            transformer1.transform(_) >> { String s -> "[$s]" as String }
            def transformer2 = Stub(Transformer)
            transformer2.transform(_) >> { String s -> "-$s-" as String }
    
            expect:
            def mapped = provider.map(transformer1).map(transformer2)
            !mapped.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousArtifactTransformFailureDescriber.java

                formatSortedAttributes(formatter, entry.getKey().getAttributes());
                formatter.node("Candidate transform(s)");
                formatter.startChildren();
                for (TransformedVariant variant : entry.getValue()) {
                    formatter.node("Transform '" + variant.getTransformChain().getDisplayName() + "' producing attributes:");
                    formatSortedAttributes(formatter, variant.getAttributes());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 13:08:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top