Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 158 for Transformed (0.26 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactSelectionIntegrationTest.groovy

            then:
            outputContains("files: [test-lib.jar, transformed-a1.jar, transformed-b2.jar, test-1.0.jar]")
            outputContains("components: [test-lib.jar, project :lib, project :ui, org:test:1.0]")
            outputContains("variants: [{artifactType=jar}, {artifactType=jar, buildType=debug, flavor=one, usage=transformed}, {artifactType=jar, usage=transformed}, {artifactType=jar, org.gradle.status=integration}]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadataSerializationHelper.java

            super.writeRealisedConfigurationsData(encoder, transformed, deduplicationDependencyCache);
            if (transformed instanceof RealisedMavenModuleResolveMetadata) {
                writeDerivedVariants(encoder, (RealisedMavenModuleResolveMetadata) transformed, deduplicationDependencyCache);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

          %replicated_output = "tf.TPUReplicatedOutput(%identity) : (tensor<i32>) -> tensor<i32>
          return %replicated_output : tensor<i32>
        }
        ```
    
        will be transformed into:
    
        ```mlir
        func @tpu_computation(%arg0: tensor<i32>) -> tensor<i32> {
          %cluster = "tf_device.cluster"() ( {
            %identity = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

             * If the value needs to be transformed, instead of unpacking consider using {@link #transform(Transformer)}
             * which automatically keeps track of side effects.
             */
            T orElse(T defaultValue);
    
            /**
             * Behaves like {@link #get()}, but does not execute a side effect if present.
             * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

         return %arg0
        }
        func @while_cond(%arg0: tensor<*x!tf_type.resource<tensor<f32>>>) {
          %read = "tf.ReadVariableOp"(%arg0)
          return %read
        }
        ```
    
        will be transformed to:
    
        ```mlir
        func @cluster_with_loop() {
          %0 = "tf.VarHandleOp"() ...
          %1 = "tf.ReadVariableOp"(%0)
          %2 = "tf_device.cluster"() ( {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlTransformerTest.groovy

            Action<XmlProvider> elementAction = Mock()
            Action<XmlProvider> stringAction2 = Mock()
            transformer.addAction(stringAction)
            transformer.addAction(elementAction)
            transformer.addAction(nodeAction)
            transformer.addAction(stringAction2)
    
            when:
            def result = transformer.transform('<root/>')
    
            then:
            stringAction.execute(_) >> { XmlProvider provider ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 15 08:16:06 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

            return getGradleVersionedCacheDir().file(CacheLayout.TRANSFORMS.getName())
        }
    
        /**
         * Finds all cached transformed JARs named {@code jarName}.
         * @param jarName the name of the JAR to look
         * @return the list of transformed JARs in the cache
         */
        List<File> getArtifactTransformJarsByName(String jarName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:47 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top