Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 683 for transformed (0.26 sec)

  1. 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)
  2. subprojects/core/src/integTest/groovy/org/gradle/internal/classpath/BuildScriptClasspathIntegrationSpec.groovy

        }
    
        TestFile getArtifactTransformCacheDir() {
            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)
  3. 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)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/config.h

        const QuantizationConfig& user_provided_config);
    
    // Returns a copy of `QuantizationConfig` where presets are expanded and
    // transformed into other fields in `QuantizationConfig`.
    //
    // The expansion rules are as follows:
    // * StaticRangePtqPreset
    //   - The preset's `representative_datasets` field will be transferred to
    //   `QuantizationConfig.calibration_options.representative_datasets`, unless
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformedVariant.java

            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;
        }
    
        /**
         * @return The transform chain to apply to the root producer variant.
         */
        public TransformChain getTransformChain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ivy/IvyModuleResolveMetadata.java

         *
         * @return the extra info for the module
         */
        ImmutableMap<NamespaceId, String> getExtraAttributes();
    
        /**
         * Returns this metadata with all dependencies transformed to use the dynamic constraint version.
         */
        IvyModuleResolveMetadata withDynamicConstraintVersions();
    
        ImmutableList<IvyDependencyDescriptor> getDependencies();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

        Table<String, Integer, String> table = HashBasedTable.create();
        checkArgument(data.length % 3 == 0);
        for (int i = 0; i < data.length; i += 3) {
          String value = (data[i + 2] == null) ? null : (data[i + 2] + "transformed");
          table.put((String) data[i], (Integer) data[i + 1], value);
        }
        return Tables.transformValues(table, FIRST_CHARACTER);
      }
    
      // Null support depends on the underlying table and function.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top