Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 374 for utilio (0.22 sec)

  1. tensorflow/cc/experimental/libtf/value.h

            return visitor(data_.capsule);
          case NONE:
            return visitor(impl::None::GetInstance());
        }
      }
    
     private:
      /// @brief A utility class for mapping C++ types to Type values.
      template <typename T>
      struct EnumValueOf;
    
      /// @brief A utility class for accessing the `Data` union members.
      template <typename T>
      struct UnionAccess;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. docs/fr/docs/contributing.md

    ### Flit
    
    **FastAPI** utilise <a href="https://flit.readthedocs.io/en/latest/index.html" class="external-link" target="_blank">Flit</a> pour build, packager et publier le projet.
    
    Après avoir activé l'environnement comme décrit ci-dessus, installez `flit` :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:51:07 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

            mainPom.scopes.compile.expectDependency('my.org:util:1.0')
    
            def utilPom = mavenRepo.module('my.org', 'util', '1.0').parsedPom
            utilPom.scopes.compile.expectDependency('org.gradle:dep:1.1')
        }
    
        @Issue("GRADLE-2945")
        def "maven-publish plugin adds excludes to pom"() {
    
            given:
            mavenRepo.module("org.gradle", "pom-excludes", "0.1").publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. pkg/controller/podgc/gc_controller.go

    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	clientset "k8s.io/client-go/kubernetes"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/client-go/util/workqueue"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top