Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,255 for Transform (0.29 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/exception/DefaultExceptionAnalyser.java

                failures.add(transform(new InitializationException(exception)));
            } else {
                failures.add(transform(exception));
            }
        }
    
        private Throwable transform(Throwable exception) {
            Throwable actualException = findDeepestRootException(exception);
            if (actualException instanceof LocationAwareException) {
                return actualException;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:10:04 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/svg.go

    	//     viewBox="___" xmlns=...>
    	//    <g id="graph0" transform="...">
    	//    ...
    	//    </g>
    	//    </svg>
    	//
    	// Change it to
    	//
    	//    <svg width="100%" height="100%"
    	//     xmlns=...>
    
    	//    <script type="text/ecmascript"><![CDATA[` ..$(svgpan.JSSource)... `]]></script>`
    	//    <g id="viewport" transform="translate(0,0)">
    	//    <g id="graph0" transform="...">
    	//    ...
    	//    </g>
    	//    </g>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

            def failed = false
            def failure = new StringBuilder()
            baselineVersions.values().each { it ->
                String message = provideMessage.transform(it)
                if (fails.transform(it)) {
                    failed = true
                    failure.append message
                }
                println message
            }
            return failed ? failure.toString() : null
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformInvocationFactory.java

    @ThreadSafe
    public interface TransformInvocationFactory {
        /**
         * Returns an invocation which allows invoking the actual transformer.
         */
        Deferrable<Try<ImmutableList<File>>> createInvocation(
            Transform transform,
            File inputArtifact,
            TransformDependencies dependencies,
            TransformStepSubject subject,
            InputFingerprinter inputFingerprinter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/RegExpNameMapperTest.java

            assertEquals("SourceTest.java", mapper.transform("Source.java"));
            assertEquals("SecondTest.java", mapper.transform("Second.java"));
        }
    
        @Test
        public void testRenameNoMatch() {
            RegExpNameMapper mapper = new RegExpNameMapper("(.+).java", "$1Test.java");
            String noMatch = "NoMatch";
            assertEquals(noMatch, mapper.transform(noMatch));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:00:51 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedApiChange.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild.binarycompatibility
    
    import groovy.transform.Immutable
    import groovy.transform.ToString
    
    @Immutable @ToString
    class AcceptedApiChange {
        String type
        String member
        String acceptation
        List<String> changes
    
        ApiChange toApiChange() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 952 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/transform/TransformFinishEvent.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events.transform;
    
    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a transform operation having finished its execution.
     *
     * @since 5.1
     */
    public interface TransformFinishEvent extends TransformProgressEvent, FinishEvent {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 961 bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformUpstreamDependenciesResolver.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    /**
     * Companion type to {@link TransformStepNode} that knows how to compute extra dependent nodes aside from the to be transformed artifact.
     * Instances of this type should not be shared beyond a single transform chain.
     *
     * @see TransformUpstreamDependenciesResolverFactory
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. cluster/addons/dns/kube-dns/Makefile

    #
    # Usage:
    #    make
    
    all: transform
    
    # .base -> .in pattern rule
    %.in: %.base
    	sed -f transforms2salt.sed $< | sed s/__SOURCE_FILENAME__/$</g > $@
    
    # .base -> .sed pattern rule
    %.sed: %.base
    	sed -f transforms2sed.sed $<  | sed s/__SOURCE_FILENAME__/$</g > $@
    
    transform: kube-dns.yaml.in kube-dns.yaml.sed
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 29 15:52:57 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationAnalysisSerializer.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.transform.utils;
    
    import org.gradle.api.internal.initialization.transform.InstrumentationArtifactMetadata;
    import org.gradle.api.internal.initialization.transform.InstrumentationDependencyAnalysis;
    
    import java.io.File;
    import java.util.Map;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 15:08:33 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top