Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 752 for transformed (0.75 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/AbstractFailedResolvedArtifactSet.java

    import org.gradle.internal.operations.BuildOperationQueue;
    import org.gradle.internal.operations.RunnableBuildOperation;
    
    /**
     * An artifact set that is failed, capturing the failure and rethrowing when visited or transformed.
     */
    public abstract class AbstractFailedResolvedArtifactSet implements ResolvedArtifactSet, ResolvedArtifactSet.Artifacts {
        protected final Throwable failure;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/LocalComponentGraphResolveState.java

        /**
         * Copies this state, but with the new component ID and the artifacts transformed by the given transformer.
         */
        LocalComponentGraphResolveState copy(ComponentIdentifier newComponentId, Transformer<LocalComponentArtifactMetadata, LocalComponentArtifactMetadata> transformer);
    
        /**
         * We currently allow a configuration that has been partially observed for resolution to be modified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/TaskDefinitionScriptTransformer.java

                    boolean transformed = maybeTransformNestedMethodCall((MethodCallExpression) expression.getLeftExpression(), transformedCall);
                    if (transformed) {
                        // Matches: task <identifier> <arg-list> <operator> <expression>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 19 22:17:48 UTC 2019
    - 9.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    When a user runs a Gradle build Gradle it uses transformed plugin jars. 
    The whole transformation process normally happens on the first use of a build or when a plugin jar is added to the build script classpath.
    We transform the jar and cache transformed jars for future use.
    
    We transform plugins classpath, TestKit classpath and buildscript classes separately. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

             * @param transforms The remaining transforms which may be prepended to {@code chain} to produce a solution.
             */
            public ChainState(@Nullable ChainNode chain, ImmutableAttributes requested, ImmutableFilteredList<TransformRegistration> transforms) {
                this.chain = chain;
                this.requested = requested;
                this.transforms = transforms;
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformDependencies.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.transform;
    
    import org.gradle.api.file.FileCollection;
    
    import java.util.Optional;
    
    public interface TransformDependencies {
        /**
         * Returns the dependency artifacts of the artifact being transformed.
         * The order of the files match that of the dependencies in the source artifact view.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1008 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                // 1. serialize a task that uses the transformed artifact
                // 2. serialize a task whose serialization triggers execution of that transform
                // 3. serialize another task that uses the transformed artifact
                // In addition, the 1st and 3rd tasks need to resolve different variants that share the same transform
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/tasks/options/OptionValues.java

     * particular option.</p>
     *
     * <p>This annotation should be attached to a getter method that returns a {@link java.util.Collection} of
     * possible values. The entries in the collection may be of any type. If necessary, they are transformed
     * into {@link String Strings} by calling {@code toString()}.</p>
     *
     * @since 4.6
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.METHOD)
    @Inherited
    public @interface OptionValues {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 28 20:18:07 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

        final EntryTransformer<? super K, ? super V1, V2> transformer;
    
        TransformedEntriesMultimap(
            Multimap<K, V1> fromMultimap,
            final EntryTransformer<? super K, ? super V1, V2> transformer) {
          this.fromMultimap = checkNotNull(fromMultimap);
          this.transformer = checkNotNull(transformer);
        }
    
        Collection<V2> transform(@ParametricNullness K key, Collection<V1> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Multimaps.java

        final EntryTransformer<? super K, ? super V1, V2> transformer;
    
        TransformedEntriesMultimap(
            Multimap<K, V1> fromMultimap,
            final EntryTransformer<? super K, ? super V1, V2> transformer) {
          this.fromMultimap = checkNotNull(fromMultimap);
          this.transformer = checkNotNull(transformer);
        }
    
        Collection<V2> transform(@ParametricNullness K key, Collection<V1> values) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top