Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,255 for Transform (0.24 sec)

  1. 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)
  2. 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)
  3. guava-tests/test/com/google/common/util/concurrent/FuturesTransformTest.java

    package com.google.common.util.concurrent;
    
    import static com.google.common.util.concurrent.Futures.transform;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    
    import com.google.common.base.Function;
    import java.lang.reflect.UndeclaredThrowableException;
    
    /**
     * Unit tests for {@link Futures#transform(ListenableFuture, Function, Executor)}.
     *
     * @author Nishant Thakkar
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 28 16:27:15 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTransformTest.java

    package com.google.common.util.concurrent;
    
    import static com.google.common.util.concurrent.Futures.transform;
    import static com.google.common.util.concurrent.MoreExecutors.directExecutor;
    
    import com.google.common.base.Function;
    import java.lang.reflect.UndeclaredThrowableException;
    
    /**
     * Unit tests for {@link Futures#transform(ListenableFuture, Function, Executor)}.
     *
     * @author Nishant Thakkar
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 28 16:27:15 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/cache/MultiWeakClassSet.java

                if (other.references.size() == references.size()) {
                    return Iterables.elementsEqual(
                            Iterables.transform(other.references, UNPACK_REF),
                            Iterables.transform(references, UNPACK_REF)
                    );
                }
            }
    
            return false;
        }
    
        @Override
        boolean isCollected() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/DependencyManagementGradleUserHomeScopeServices.java

    import org.gradle.api.internal.artifacts.ivyservice.DefaultArtifactCaches;
    import org.gradle.api.internal.artifacts.transform.ImmutableTransformWorkspaceServices;
    import org.gradle.api.internal.artifacts.transform.ToPlannedTransformStepConverter;
    import org.gradle.api.internal.artifacts.transform.TransformExecutionResult;
    import org.gradle.api.internal.cache.CacheConfigurationsInternal;
    import org.gradle.cache.Cache;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top