Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 315 for utilio (1.81 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    [[tasks_parallel_worker]]
    = Developing Parallel Tasks
    
    Gradle provides an API that can split tasks into sections that can be executed in parallel.
    
    image::writing-tasks-5.png[]
    
    This allows Gradle to fully utilize the resources available and complete builds faster.
    
    [[worker_api]]
    == The Worker API
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. docs/pt/docs/alternatives.md

    Webargs é uma ferramente feita para fornecer o que está no topo de vários frameworks, inclusive Flask.
    
    Ele utiliza Marshmallow por baixo para validação de dados. E ele foi criado pelos mesmos desenvolvedores.
    
    Ele é uma grande ferramenta e eu também a utilizei muito, antes de ter o **FastAPI**.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            createDirs("api", "impl", "util")
            settingsFile << "include 'api', 'impl', 'util'"
    
            file("api/build.gradle") << "configurations { api }"
            file("impl/build.gradle") << """
                configurations { util }
                dependencies { util project(path: ':api', configuration: 'api') }
                task build(dependsOn: configurations.util)
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

        mlir::OpPassManager &pm, const QuantizationOptions &quantization_options,
        std::optional<const absl::string_view> mlir_dump_file_prefix) {
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
      // Add PrepareLiftingPass to utilize its functionalities like folding batch
      // normalization ops and removing training related ops.
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::quant::CreatePrepareLiftingPass(quantization_options.op_set()));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/AntlrExecuter.java

    import org.gradle.process.internal.worker.RequestHandler;
    import org.gradle.util.internal.RelativePathUtil;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.File;
    import java.lang.reflect.Constructor;
    import java.lang.reflect.Field;
    import java.lang.reflect.InvocationTargetException;
    import java.util.List;
    
    public class AntlrExecuter implements RequestHandler<AntlrSpec, AntlrResult> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/aot/BUILD

        cpp_class = "UnknownOpAddComp",
        graph = "test_graph_tfunknownop.pbtxt",
        mlir_components = "Bridge",
        tags = [
            "manual",
        ],
    )
    
    # Utility library for benchmark binaries, used by the *_benchmark rules that are
    # added by the tfcompile bazel macro.
    cc_library(
        name = "benchmark",
        srcs = ["benchmark.cc"],
        hdrs = ["benchmark.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

    import org.eclipse.aether.resolution.DependencyResult;
    import org.eclipse.aether.util.filter.AndDependencyFilter;
    import org.eclipse.aether.util.filter.ScopeDependencyFilter;
    import org.eclipse.aether.util.graph.visitor.DependencyGraphDumper;
    import org.eclipse.aether.util.repository.SimpleArtifactDescriptorPolicy;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

      * `whenMerged { link:{javadocPath}/org/gradle/plugins/ide/eclipse/model/Jdt.html[Jdt] arg -&gt; ... }`
      * `withProperties { arg -&gt; }` argument type => link:{javaApi}/java/util/Properties.html[`java.util.Properties`]
    
    
    [[sec:partial-overwrite]]
    ==== Partial overwrite of existing content
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Script.java

         * Provides access to resource-specific utility methods, for example factory methods that create various resources.
         *
         * @return Returned instance contains various resource-specific utility methods.
         */
        ResourceHandler getResources();
    
        /**
         * Creates a {@code Provider} implementation based on the provided value.
         *
         * @param value The {@code java.util.concurrent.Callable} use to calculate the value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/build.gradle

                sampleDirectory = samplesRoot.dir("incubating/java/jvm-multi-project-with-test-aggregation-standalone")
                displayName = "Aggregating test results using a standalone utility project (Incubating)"
                description = "Report all test results using a standalone utility project as part of a multi-module project."
                category = "Java"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top