Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 683 for transformed (0.16 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/dependencies/transforms/IdentifyTransformExecutionProgressDetails.java

        /**
         * The from attributes of the registered transform.
         */
        Map<String, String> getFromAttributes();
    
        /**
         * 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();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jul 15 07:29:19 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/value/transformer.go

    		if bytes.HasPrefix(data, transformer.Prefix) {
    			result, stale, err := transformer.Transformer.TransformFromStorage(ctx, data[len(transformer.Prefix):], dataCtx)
    			// To migrate away from encryption, user can specify an identity transformer higher up
    			// (in the config file) than the encryption transformer. In that scenario, the identity transformer needs to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 22:44:02 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/RealisedIvyModuleResolveMetadata.java

            return dependencies;
        }
    
        private IvyModuleResolveMetadata withDependencies(Map<IvyDependencyDescriptor, IvyDependencyDescriptor> transformed) {
            ImmutableList<IvyDependencyDescriptor> transformedDescriptors = ImmutableList.copyOf(transformed.values());
            Set<String> configurationNames = getConfigurationNames();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top