Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for targeting (0.2 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         * specify a classifier, for example.
         *
         * @param dependencyProvider the dependency provider
         * @param variantSpec the variant specification
         * @return a new dependency provider targeting the configured variant
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

                        }
                    }
                }
            }
    
            where:
            conf << ['runtime', 'test']
        }
    
        def "explicit configuration selection in ivy modules is NOT supported if targeting a #target module"() {
            given:
            setupRepositories([target, 'ivy'])
            repository('ivy') {
                "org:ivy:1.0" {
                    withModule(IvyModule) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      quantization_config.mutable_static_range_ptq_preset()
          ->set_enable_per_channel_quantized_weight(
              quantization_options.enable_per_channel_quantization());
      // When targeting server TPUs quantized types should be unpacked into
      // integer ops.
      quantization_config.mutable_pipeline_config()->set_unpack_quantized_types(
          true);
      *quantization_config.mutable_debugger_config() =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/dwarf.go

    //
    // The fixup table below helps overcome this hurdle. At the point
    // where a parameter/variable reference is made (via a call to
    // "ReferenceChildDIE"), a fixup record is generate that records
    // the relocation that is targeting that child variable. At a later
    // point when the abstract function DIE is emitted, there will be
    // a call to "RegisterChildDIEOffsets", at which point the offsets
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

      // on TPU.
      // Extracts the StableHLO module from tf.XlaCallModuleOp if the StableHLO
      // module is serialized in it.
      pm.addPass(mlir::odml::CreateLegalizeTFXlaCallModuleToStablehloPass());
    
      // Preprocesses TPU-targeting StableHLO module for support in TF Quantizer.
      pm.addPass(mlir::quant::CreateConvertTpuModelToCpuPass());
      pm.addPass(mlir::createInlinerPass());
      pm.addNestedPass<mlir::func::FuncOp>(mlir::createCanonicalizerPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    mlir::PassPipelineRegistration<> replicated_clustering_bridge_v1(
        "tf-replicated-clustering-bridge-v1",
        "Run all the passes involved in transforming a TensorFlow V1 graph before "
        "execution so that it is suitable for targeting devices.",
        CreateReplicatedBridgePipelineV1);
    
    }  // namespace v1
    }  // namespace tf2xla
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/NodeBackedModelMapSpec.groovy

            then:
            sb1.other == "other"
        }
    
        static class SetProp extends RuleSource {
            @Mutate
            void m(@Path("foo") Bean bean) {}
        }
    
        def "when targeting by type, paths are interpreted relative to item"() {
            given:
            def mmType = ModelTypes.modelMap(Bean)
    
            registry
                .registerModelMap("beans", Bean) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    So, **avoid publishing custom variants** if they are for internal use only.
    ====
    
    [[targeting-different-platforms]]
    == Targeting different platforms
    
    It is common for a library to target different platforms.
    In the Java ecosystem, we often see different artifacts for the same library, distinguished by a different _classifier_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    We will look at Java projects in detail in this chapter, but most of the topics apply to other supported JVM languages as well, such as link:https://kotlinlang.org/docs/reference/using-gradle.html#targeting-the-jvm[Kotlin], <<groovy_plugin.adoc#groovy_plugin,Groovy>> and <<scala_plugin.adoc#scala_plugin,Scala>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                collectOutputs(launcher)
                launcher.run()
            }
    
            then:
            outputContains("BUILD SUCCESSFUL")
        }
    
        def "can launch test with test launcher via test filter targeting a specific task"() {
            setup:
            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << """
                rootProject.name = 'other-build'
                include 'sub'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top