Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,181 for component1 (0.14 sec)

  1. testing/performance/src/templates/native-monolithic/components.gradle

    model {
        components {
            "\$project.name"(NativeLibrarySpec) {
                sources {
                    cpp_srcs(CppSourceSet) {
                        source {
                            srcDirs "\$rootDir/modules/\${project.name}"
                            <% includedSourceCount.times { %>
                            include "src/src${it}_cpp.cpp"
                            <% } %>
                        }
                        exportedHeaders {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h

    // after the calibration step, corresponding to each `TF::CustomAggregatorOp`s
    // in the input module op.
    //
    // TODO: b/320607042 - Add tests for this component on the python layer.
    class CalibrationComponent : public Component {
     public:
      // Name of the post-training quantization post-calibration step. Used for
      // debugging purposes.
      static constexpr absl::string_view kName = "quant_ptq_calibration";
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/customModel/languageType/tests/softwareModelExtend-components.out

        Text source 'docs:reference'
            srcDir: src/docs/reference
    
    Binaries
        DocumentationBinary 'docs:exploded'
            build using task: :docsExploded
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 559 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/component.h"
    
    #include <optional>
    #include <string>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/base/nullability.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/customModel/languageType/tests/softwareModelExtend-components.sample.conf

    # tag::cli[]
    # gradle --quiet components
    # end::cli[]
    executable: gradle
    args: components
    flags: --quiet
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 162 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/component-model-gradle.png

    component-model-gradle.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 04:41:24 UTC 2024
    - 99.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/component-model-maven.png

    component-model-maven.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 04:41:24 UTC 2024
    - 85.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/JvmLibraryArtifactResolveTestFixture.groovy

            assert deps.size() == 1
            def componentId = deps[0].selected.id
    
            def result = dependencies.createArtifactResolutionQuery()
                .forComponents(componentId)
                .withArtifacts(JvmLibrary, $artifactTypesString)
                .execute()
    
            assert result.components.size() == 1
    
            // Check generic component result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/MetadataArtifactResolveTestFixture.groovy

                .forComponents(rootId)
                .withArtifacts($requestedComponent, $requestedArtifact)
                .execute()
    
            assert result.components.size() == 1
    
            // Check generic component result
            def componentResult = result.components.iterator().next()
            assert componentResult.id.displayName == 'project :'
            assert componentResult instanceof $expectedComponentResult.name
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/JavaEcosystemVariantDerivationStrategy.java

        private static ImmutableCapabilities buildShadowPlatformCapability(ModuleComponentIdentifier componentId, boolean enforced) {
            return ImmutableCapabilities.of(
                new ShadowedImmutableCapability(new DefaultImmutableCapability(
                        componentId.getGroup(),
                        componentId.getModule(),
                        componentId.getVersion()
                ), enforced ? "-derived-enforced-platform" : "-derived-platform")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top