Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 313 for livez (0.05 sec)

  1. src/cmd/compile/internal/ssa/check.go

    				f.Fatalf("memory is first in a tuple: %s\n", v.LongString())
    			}
    		}
    	}
    
    	// Single live memory checks.
    	// These checks only work if there are no memory copies.
    	// (Memory copies introduce ambiguity about which mem value is really live.
    	// probably fixable, but it's easier to avoid the problem.)
    	// For the same reason, disable this check if some memory ops are unused.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. 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)
  3. guava/src/com/google/common/graph/Network.java

      Set<N> nodes();
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
       * Returns a live view of this network as a {@link Graph}. The resulting {@link Graph} will have
       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. android/guava/src/com/google/common/graph/Network.java

      Set<N> nodes();
    
      /** Returns all edges in this network, in the order specified by {@link #edgeOrder()}. */
      Set<E> edges();
    
      /**
       * Returns a live view of this network as a {@link Graph}. The resulting {@link Graph} will have
       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/capmanagers_test.go

    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		f.Reset()
    		live := f.Live()
    		accessor, err := meta.Accessor(live)
    		if err != nil {
    			t.Fatalf("%v: couldn't get accessor: %v", tc.name, err)
    		}
    		accessor.SetManagedFields(tc.input)
    		if err := f.Update(live, "no-op-update"); err != nil {
    			t.Fatalf("%v: failed to do no-op update to object: %v", tc.name, err)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

        T getOrElse(T defaultValue);
    
        /**
         * Returns a new {@link Provider} whose value is the value of this provider transformed using the given function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries the original (this) provider
         * and applies the transformation to the result. Whenever the original provider has no value, the new provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            when:
            deps = dependencies.getDependencies(Stub(Task))
    
            then:
            visited == 2
            deps as List == [dependency]
        }
    
        def "collection dependencies are live"() {
            def task = Stub(Task)
            def dependency1 = Stub(Task)
            def dependency2 = Stub(Task)
            def dependencySource = Mock(TaskDependencyContainer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/helper.go

    	// by the caller, as it knows more information about the pod,
    	// which is needed to determine log size.
    	if rootFs != nil {
    		// The container logs live on the node rootfs device
    		result.Logs = buildLogsStats(cstat, rootFs)
    	}
    
    	if imageFs != nil {
    		// The container rootFs lives on the imageFs devices (which may not be the node root fs)
    		result.Rootfs = buildRootfsStats(cstat, imageFs)
    	}
    
    	cfs := cstat.Filesystem
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 23:40:02 UTC 2023
    - 14.8K bytes
    - Viewed (0)
Back to top