Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 443 for Transformed (0.45 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

        private final VariantDefinition chain;
    
        public TransformedVariant(ResolvedVariant root, VariantDefinition chain) {
            this.root = root;
            this.chain = chain;
        }
    
        /**
         * @return The transformed variant which results from applying the transform chain to the root variant.
         */
        public VariantDefinition getTransformedVariantDefinition() {
            return chain;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

            }
            realize()
    
            then:
            realizeChild("foo").other == "changed"
            specialItemClass.isInstance(realizeChild("bar"))
        }
    
        def "can create item using transformed DSL rule closure"() {
            // DSL rules are represented using DeferredModelAction
            def action = mockDeferredModelAction()
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top