Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 113 for Transformed (0.24 sec)

  1. 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)
  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/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. 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)
  5. 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)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/preprocess_op.cc

          // Uniform Quantized op requires weights of tf.DepthwiseConv2dNative to
          // be transformed from [H,W,C,M] to [H,W,1,CxM] where
          // H=height,W=width,C=channel,M=multiplier. Therefore, a reshape op is
          // inserted between the constant op and the function op so that the
          // constant is safely transformed for the multi-use cases as well. Note
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * to tasks that use the new provider for input values.
         * </p>
         *
         * @param transformer The transformer to apply to values. May return {@code null}, in which case the provider will have no value.
         * @since 4.3
         */
        <S> Provider<S> map(Transformer<? extends @org.jetbrains.annotations.Nullable S, ? super T> transformer);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                            continue;
                        }
                        Object[] transformed = argsTransformer.transform(method.getParameterTypes(), arguments);
                        if (transformed == arguments) {
                            continue;
                        }
                        return DynamicInvokeResult.found(method.doMethodInvoke(bean, transformed));
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

                    builder.put(fileName, content)
                }
            }
            def transformed = transformer.transform(DefaultClassPath.of(jar), BuildLogic)
            def filtering = new FilteringClassLoader(getClass().classLoader, new FilteringClassLoader.Spec([Action.name, Instrumented.name], [], [], [], [], [], []))
            testClassLoader = new URLClassLoader(transformed.asURLArray, filtering)
            return testClassLoader.loadClass(cl.name)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         * <p>
         * In case the provider is {@link #map transformed}, the value before the transform is captured for this side effect.
         * The new side effect for the captured value is then attached to the transformed provider.
         * This new "fixed" side effect will be executed when the resulting provider produces its values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
Back to top