Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 533 for Transformed (1.82 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

         * Constructs a complete cacheable variant chain given a root transformed variant and the chain of variants
         * to apply to that root variant.
         *
         * @param stateChain The transform chain from the search state to apply to the root transformed variant.
         * @param root The root variant to apply the chain to.
         *
         * @return A variant chain representing the final transformed variant.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformDependencies.java

    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.
         */
        Optional<FileCollection> getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1008 bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                    }
                }
    
                configurations {
                    transformed
                }
    
                def intermediateFiles = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                dependencies {
                    transformed files(intermediateFiles)
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The to attributes of the registered transform.
         */
        Map<String, String> getToAttributes();
    
        /**
         * The file name of the input artifact that is about to be transformed.
         */
        String getArtifactName();
    
        /**
         * The class of the transform action.
         */
        Class<?> getTransformActionClass();
    
        /**
         * The combined input hash of the secondary inputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/component/local/model/TransformedComponentFileArtifactIdentifier.java

    import org.gradle.api.artifacts.component.ComponentIdentifier;
    import org.gradle.internal.DisplayName;
    
    import java.util.Objects;
    
    /**
     * Identifies the transformed artifact of a component. The original file name is tracked in order to guarantee uniqueness,
     * as artifact transformations may result in multiple artifacts with the same file name.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 18:43:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Multimaps.java

       * that the transformer is capable of accepting null inputs. The transformed multimap might
       * contain null values if the transformer sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
       * is.
       *
       * <p>The transformer is applied lazily, invoked when needed. This is necessary for the returned
    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

       * that the transformer is capable of accepting null inputs. The transformed multimap might
       * contain null values if the transformer sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying multimap
       * is.
       *
       * <p>The transformer is applied lazily, invoked when needed. This is necessary for the returned
    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