Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 233 for livez (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // For example, the last read/write with parallel_ids `{group0:branch0}`
      // lives at stack depth 1 and is depended on by ops with parallel_ids
      // of the form `{group0:branch0, ...}`.
      //
      // We track a set of reads/writes rather than a single read/write because
      // multiple parallel ops may be live at any particular point.
      StackResourceToOps stack_down_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

    }
    
    // Follows the structure of Live-variable analysis. It is a form of
    // CFG (Control Flow Graph) analysis, often used in compilers.
    //
    // A variable is live if it holds a value that may be used in the future.
    // It is live-in at node n if it is live on any of the node's in-edges.
    // It is live-out at node n if it is live on any of the node's out-edges.
    // def[n] refers to values that are defined at node n.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface CrossBuildSession extends Global {}
    
        /**
         * These services are reused across build invocations in a session.
         *
         * A build session can be long-lived in a continuous build (where these services would be reused) or short-lived in a
         * regular, single build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/promote_resources_to_args.cc

      if (!has_resources) return success();
    
      // We initially assign the argument for a resource as the live value for the
      // resource. We then walk through the operations in the function in their
      // lexical order, to update the live value for the resource when we see a
      // store to the resource and replace reads of the resource with uses of its
      // live value.
      for (Operation& op : llvm::make_early_inc_range(block)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    }
    
    // reset fills state with the live variables from live.
    func (state *stateAtPC) reset(live abt.T) {
    	slots, registers := state.slots, state.registers
    	for i := range slots {
    		slots[i] = VarLoc{}
    	}
    	for i := range registers {
    		registers[i] = registers[i][:0]
    	}
    	for it := live.Iterator(); !it.Done(); {
    		k, d := it.Next()
    		live := d.(*liveSlot)
    		slots[k] = live.VarLoc
    		if live.VarLoc.Registers == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    [[find_all_daemons]]
    == Find Daemons
    
    If you have installed the Java Development Kit (JDK), you can view live daemons with the `jps` command.
    
    ----
    $ jps
    ----
    ----
    33920 Jps
    27171 GradleDaemon
    22792
    ----
    
    Live Daemons appear under the name `GradleDaemon`.
    Because this command uses the JDK, you can view Daemons running any version of Gradle.
    
    [[enable_deamon]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  7. platforms/native/tooling-native/build.gradle.kts

        )
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core-api"))
        api(project(":core"))
        api(project(":ide")) {
            because("To pick up various builders (which should live somewhere else)")
            api(project(":tooling-api"))
        }
    
        implementation(projects.baseServices)
        implementation(project(":file-collections"))
        implementation(project(":language-native"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:40:41 UTC 2024
    - 894 bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_control.go

    	// mark all live revisions
    	live := map[string]bool{}
    	if current != nil {
    		live[current.Name] = true
    	}
    	if update != nil {
    		live[update.Name] = true
    	}
    	for i := range pods {
    		live[getPodRevision(pods[i])] = true
    	}
    	// collect live revisions and historic revisions
    	for i := range revisions {
    		if !live[revisions[i].Name] {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:03:46 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. subprojects/build-events/build.gradle.kts

        integTestDistributionRuntimeOnly(project(":distributions-basics"))  {
            because("Requires ':toolingApiBuilders': Event handlers are in the wrong place, and should live in this project")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. docs/fr/docs/advanced/index.md

    !!! note "Remarque"
        Les sections de ce chapitre ne sont **pas nécessairement "avancées"**.
    
        Et il est possible que pour votre cas d'utilisation, la solution se trouve dans l'un d'entre eux.
    
    ## Lisez d'abord le didacticiel
    
    Vous pouvez utiliser la plupart des fonctionnalités de **FastAPI** grâce aux connaissances du [Tutoriel - Guide de l'utilisateur](../tutorial/index.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top