Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 233 for livez (0.35 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/cluster_outlining.mlir

    // CHECK: %[[E_OUTPUT:[0-9]*]] = "tf.E"(%[[CLUSTER_1_ARG_0]])
    // CHECK: %[[F_OUTPUT:[0-9]*]] = "tf.F"(%[[CLUSTER_1_ARG_1]], %[[E_OUTPUT]])
    // CHECK: return %[[F_OUTPUT]]
    
    // -----
    
    // Tests outlining clusters with no live-in values.
    
    // CHECK-LABEL: func @cluster_operands
    // CHECK-SAME: (%[[ARG_0:[a-z0-9]*]]: tensor<?xi32>)
    func.func @cluster_operands(%arg0: tensor<?xi32>) -> tensor<?xi32> {
      %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/internal/trace/parser.go

    	EvGoInSyscall       = 32 // denotes that goroutine is in syscall when tracing starts [timestamp, goroutine id]
    	EvHeapAlloc         = 33 // gcController.heapLive change [timestamp, heap live bytes]
    	EvHeapGoal          = 34 // gcController.heapGoal change [timestamp, heap goal bytes]
    	EvTimerGoroutine    = 35 // denotes timer goroutine [timer goroutine id]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. src/internal/weak/pointer_test.go

    		if wt.Strong() != nil {
    			t.Errorf("weak pointer did not go nil before finalizer ran")
    		}
    		done <- struct{}{}
    	})
    
    	// Make sure the weak pointer stays around while bt is live.
    	runtime.GC()
    	if wt.Strong() == nil {
    		t.Errorf("weak pointer went nil too soon")
    	}
    	runtime.KeepAlive(bt)
    
    	// bt is no longer referenced.
    	//
    	// Run one cycle to queue the finalizer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtension.kt

     *    module-level services due to memory consumption. In particular, resolve extensions implemented as module-level services live longer
     *    than their corresponding analysis session, so the resolve extension would not be garbage collected after its corresponding analysis
     *    session has been invalidated.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/runtime/metrics/doc.go

    		blocks.
    
    	/gc/heap/goal:bytes
    		Heap size target for the end of the GC cycle.
    
    	/gc/heap/live:bytes
    		Heap memory occupied by live objects that were marked by the
    		previous GC.
    
    	/gc/heap/objects:objects
    		Number of objects, live or unswept, occupying heap memory.
    
    	/gc/heap/tiny/allocs:objects
    		Count of small allocations that are packed together into blocks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. platforms/core-runtime/instrumentation-agent-services/src/integTest/groovy/org/gradle/internal/instrumentation/agent/AgentApplicationTest.groovy

    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    import static org.gradle.test.fixtures.ConcurrentTestUtil.poll
    
    // This test doesn't live in :instrumentation-agent to avoid the latter being implicitly added to
    // the test runtime classpath as part of the main source set's output.
    // It is important to have the agent appended to the classpath of all integration tests.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. cni/pkg/repair/netns.go

    				}
    			}
    		}
    	}
    	return false, fmt.Errorf("no interface has the address %s", targetAddr)
    }
    
    // getPodNetNs finds the network namespace for a given pod. There is not a great way to do this. Network namespaces live
    // under the procfs, /proc/<pid>/ns/net. In majority of cases, this is not used directly, but is rather bind mounted to
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/runtime/pprof/pprof.go

    // the profile away from live data and toward garbage.
    // If there has been no garbage collection at all, the heap profile reports
    // all known allocations. This exception helps mainly in programs running
    // without garbage collection enabled, usually for debugging purposes.
    //
    // The heap profile tracks both the allocation sites for all live objects in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         *
         * </ul>
         *
         * <p>The returned file collection is lazy, so that the paths are evaluated only when the contents of the file
         * collection are queried. The file collection is also live, so that it evaluates the above each time the contents
         * of the collection is queried.</p>
         *
         * <p>The returned file collection maintains the iteration order of the supplied paths.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/VisitableURLClassLoader.java

                // Not supported on Java 6
            }
        }
    
        private final Map<Object, Object> userData = new HashMap<Object, Object>();
    
        /**
         * This method can be used to store user data that should live among with this classloader
         *
         * @param consumerId the consumer
         * @param onMiss called to create the initial data, when not found
         * @param <T> the type of data
         * @return user data
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top