Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 533 for Transformed (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/collect/Maps.java

       * the transformer is capable of accepting null inputs. The transformed map might contain null
       * values if the transformer sometimes gives a null result.
       *
       * <p>The returned map is not thread-safe or serializable, even if the underlying map 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: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Maps.java

       * the transformer is capable of accepting null inputs. The transformed map might contain null
       * values if the transformer sometimes gives a null result.
       *
       * <p>The returned map is not thread-safe or serializable, even if the underlying map 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
    - 159.5K bytes
    - Viewed (0)
  8. 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)
  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