Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 305 for Transformed (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/LocalSnapshotMetadataGenerator.java

    import org.eclipse.aether.metadata.Metadata;
    import org.eclipse.aether.util.ConfigUtils;
    
    /**
     * Maven local GAV level metadata generator.
     * <p>
     * Local snapshot metadata contains non-transformed snapshot version.
     */
    class LocalSnapshotMetadataGenerator implements MetadataGenerator {
    
        private final Map<Object, LocalSnapshotMetadata> snapshots;
    
        private final Date timestamp;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/MultiReleaseClasspathElementTransformForLegacy.java

    import java.io.File;
    import java.io.IOException;
    
    import static org.gradle.internal.classpath.transforms.MrJarUtils.isInUnsupportedMrJarVersionedDirectory;
    
    /**
     * Transformation for legacy instrumentation when transformed JARs are part of the classpath.
     * This is still used when TestKit and TAPI run Gradle in embedded or debug mode.
     * <p>
     * This transformation filters out not yet supported versioned directories of the multi-release JARs.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformUpstreamDependenciesResolverFactory.java

         * Creates a {@link TransformUpstreamDependenciesResolver} for the given {@code ComponentIdentifier} and {@code TransformChain}.
         *
         * @param componentIdentifier the identifier of the component whose artifacts will be transformed.
         * @param transformChain the transform chain that will be applied.
         *
         * @return an {@code ExecutionGraphDependenciesResolver} based on the provided parameters
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. pkg/bootstrap/platform/platform.go

    	// mapping from "gcp_project" to "2344534543". Keys should be prefixed
    	// by the short name for the platform (example: "gcp_").
    	Metadata() map[string]string
    
    	// Locality returns the run location for the bootstrap transformed from the
    	// platform-specific representation into the Envoy Locality schema.
    	Locality() *core.Locality
    
    	// Labels returns a collection of labels that exist on the underlying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 07 20:19:01 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

            ClassLoader source,
            Predicate<String> shouldLoadTransformedClass,
            ClassTransform transform,
            InstrumentationTypeRegistry typeRegistry
        ) {
            super("test-transformed-loader", source, Collections.emptyList());
            this.shouldLoadTransformedClass = shouldLoadTransformedClass;
            this.transform = transform;
            this.source = source;
            this.typeRegistry = typeRegistry;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/codes.go

    	exprCall
    	exprConvert
    	exprNew
    	exprMake
    	exprSizeof
    	exprAlignof
    	exprOffsetof
    	exprZero
    	exprFuncInst
    	exprRecv
    	exprReshape
    	exprRuntimeBuiltin // a reference to a runtime function from transformed syntax. Followed by string name, e.g., "panicrangeexit"
    )
    
    type codeAssign int
    
    func (c codeAssign) Marker() pkgbits.SyncMarker { return pkgbits.SyncAssign }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftBinaryTest.groovy

        }
    
        def "compileModules is a transformed view of compile"() {
            given:
            compile.incoming >> incoming
    
            when:
            binary.compileModules.files
    
            then:
            1 * incoming.artifacts >> Stub(ArtifactCollection)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top