Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 350 for composed (0.15 sec)

  1. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

        XlaDeviceCompiler** xla_device_compiler,
        DeviceCompilationProfiler** profiler,
        const XlaCompiler::CompilationResult** result,
        xla::LocalExecutable** executable) {
      // We store information about the JIT-compiled XLA computation
      // in the ResourceMgr.
      ResourceMgr* rm = ctx->resource_manager();
      CHECK(rm);
    
      TF_ASSIGN_OR_RETURN(DeviceType compilation_device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/CrossBuildScriptCachingIntegrationSpec.groovy

            scriptCachesDir = new File(versionCaches, 'scripts')
            remappedCachesDir = new File(versionCaches, 'scripts-remapped')
        }
    
        def "identical build files are compiled once"() {
            given:
            root {
                core {
                    'core.gradle'(this.simpleBuild())
                }
                module1 {
                    'module1.gradle'(this.simpleBuild())
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Suppliers.java

       * words, the new supplier's value will be computed by retrieving the value from {@code supplier},
       * and then applying {@code function} to that value. Note that the resulting supplier will not
       * call {@code supplier} or invoke {@code function} until it is called.
       */
      public static <F extends @Nullable Object, T extends @Nullable Object> Supplier<T> compose(
          Function<? super F, T> function, Supplier<F> supplier) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/docker.md

    #### Docker Compose
    
    Você pode estar implantando em um **único servidor** (não em um cluster) com o **Docker Compose**, então você não teria uma maneira fácil de gerenciar a replicação de contêineres (com o Docker Compose) enquanto preserva a rede compartilhada e o **balanceamento de carga**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            when:
            run("merge")
    
            then:
            outputContains("result = [a.txt, b.txt]")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/12832")
        def "can compose and filter a file collection that includes the collection it replaces"() {
            taskTypeLogsInputFileCollectionContent()
            buildFile """
                class LegacyTask extends ShowFilesTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedTaskExecutionIntegrationTest.groovy

        }
    
        def "tasks get cached when source code changes without changing the compiled output"() {
            when:
            withBuildCache().run "assemble"
            then:
            noneSkipped()
    
            file("src/main/java/Hello.java") << """
                // Change to source file without compiled result change
            """
            withBuildCache().run "clean"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. docs/en/data/external_links.yml

    https://dev.to/dbanty/why-i-m-leaving-flask-3ki6 title: Why I'm Leaving Flask - author: Mike Moritz author_link: https://medium.com/@mike.p.moritz link: https://medium.com/@mike.p.moritz/using-docker-compose-to-deploy-a-lightweight-python-rest-api-with-a-job-queue-37e6072a209b title: Using Docker Compose to deploy a lightweight Python REST API with a job queue - author: '@euri10' author_link: https://gitlab.com/euri10 link: https://gitlab.com/euri10/fastapi_cheatsheet title: A FastAPI and Swagger UI...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. docs/zh/docs/deployment/docker.md

    下面一些什么时候这种做法有意义的示例:
    
    
    #### 一个简单的应用程序
    
    如果你的应用程序**足够简单**,你不需要(至少现在不需要)过多地微调进程数量,并且你可以使用自动默认值,那么你可能需要容器中的进程管理器 (使用官方 Docker 镜像),并且你在**单个服务器**而不是集群上运行它。
    
    #### Docker Compose
    
    你可以使用 **Docker Compose** 部署到**单个服务器**(而不是集群),因此你没有一种简单的方法来管理容器的复制(使用 Docker Compose),同时保留共享网络和 **负载均衡**。
    
    然后,你可能希望拥有一个**单个容器**,其中有一个**进程管理器**,在其中启动**多个worker进程**。
    
    #### Prometheus和其他原因
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. src/slices/slices.go

    import (
    	"cmp"
    	"math/bits"
    	"unsafe"
    )
    
    // Equal reports whether two slices are equal: the same length and all
    // elements equal. If the lengths are different, Equal returns false.
    // Otherwise, the elements are compared in increasing index order, and the
    // comparison stops at the first unequal pair.
    // Floating point NaNs are not considered equal.
    func Equal[S ~[]E, E comparable](s1, s2 S) bool {
    	if len(s1) != len(s2) {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Binary Plugins :: Binary plugins are compiled plugins typically written in Java or Kotlin DSL that are packaged as JAR files.
    They are applied to a project using the `plugins {}` block.
    They offer better performance and maintainability compared to script plugins or precompiled script plugins.
    
    Precompiled Script Plugins :: Precompiled script plugins are Groovy DSL or Kotlin DSL scripts compiled and distributed as Java class files packaged in a library.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top