Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 383 for flive (0.04 sec)

  1. test/fixedbugs/issue27518a.go

    	defer func() {
    		// Ignore the panic.
    		recover()
    		// Force a stack walk. Go 1.11 will fail because x is now
    		// considered live again.
    		runtime.GC()
    	}()
    	// Make x live at the defer's PC.
    	runtime.KeepAlive(x)
    
    	// x is no longer live. Garbage collect the [32]*int on the
    	// heap.
    	runtime.GC()
    	// At this point x's dead stack slot points to dead memory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 19:54:23 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. test/const.go

    	assert((&five == interface{}(nil)) == pi(&five, nilN),
    		"for interface{}==*int compiler == runtime")
    	assert((interface{}(nil) == &five) == ip(nilN, &five),
    		"for interface{}==*int compiler == runtime")
    
    	assert((5 == interface{}(5)) == ni(five, five),
    		"for int==interface{} compiler == runtime")
    	assert((interface{}(5) == 5) == in(five, five),
    		"for interface{}==int comipiler == runtime")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 26 23:54:29 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  3. src/net/tcpconn_keepalive_conf_windows_test.go

    	// TODO(panjf2000): Unlike Unix-like OS's, old Windows (prior to Windows 10, version 1709)
    	// 	doesn't provide any ways to retrieve the current TCP keep-alive settings, therefore
    	// 	we're not able to run the test suite similar to Unix-like OS's on Windows.
    	//  Try to find another proper approach to test the keep-alive settings on old Windows.
    	if !windows.SupportTCPKeepAliveIdle() || !windows.SupportTCPKeepAliveInterval() || !windows.SupportTCPKeepAliveCount() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:35 UTC 2024
    - 987 bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/KeepAliveMode.java

    /**
     * Describes whether a Scala compiler daemon should be reused.
     *
     * @since 7.6
     */
    @Incubating
    public enum KeepAliveMode {
        /**
         * The compiler is kept alive for a session.
         */
        SESSION,
    
        /**
         * The compiler is kept alive across builds.
         */
        DAEMON
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 979 bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/KeepAliveMode.java

     * limitations under the License.
     */
    
    package org.gradle.workers.internal;
    
    public enum KeepAliveMode {
        /**
         * Keep alive until the end of the build session
         */
        SESSION,
        /**
         * Keep alive until the daemon stops
         */
        DAEMON
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 835 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testing/testfieldmanager.go

    		typeConverter,
    		&FakeObjectConvertor{},
    		&FakeObjectDefaulter{},
    		gvk.GroupVersion(),
    		gvk.GroupVersion(),
    		nil,
    	)
    	if err != nil {
    		panic(err)
    	}
    	live := &unstructured.Unstructured{}
    	live.SetKind(gvk.Kind)
    	live.SetAPIVersion(gvk.GroupVersion().String())
    	// This is different from `internal.NewDefaultFieldManager` because:
    	// 1. We don't want to create a `internal.FieldManager`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 16 20:03:48 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/lastappliedmanager.go

    	if err != nil {
    		return nil, fmt.Errorf("failed to compare last applied object and live object: %v", err)
    	}
    
    	// Remove fields in last applied that are different, added, or missing in
    	// the live object.
    	// Because last-applied fields don't match the live object fields,
    	// then we don't own these fields.
    	lastAppliedObjFieldSet = lastAppliedObjFieldSet.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. pkg/controlplane/controller/legacytokentracking/controller_test.go

    		clientObjects     []runtime.Object
    		existingConfigMap *corev1.ConfigMap
    
    		expectedErr     error
    		expectedActions []core.Action
    	}{
    		{
    			name:          "create configmap [no cache, no live object]",
    			clientObjects: []runtime.Object{},
    			expectedActions: []core.Action{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 19 17:33:34 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_formation.cc

            continue;
          use.set(std::get<1>(p));
        }
      }
    }
    
    // Get all escaped live-out values of a region.
    void GetLiveOuts(Region* region, llvm::SmallVectorImpl<Value>* live_outs) {
      live_outs->clear();
    
      for (Operation& op : region->front()) {
        for (Value v : op.getResults()) {
          // A value is live-out if any of its users are not inside value producer's
          // region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 13:30:21 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  10. .idea/scopes/IDE.xml

    </component>...
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 24 16:22:04 UTC 2017
    - 609 bytes
    - Viewed (0)
Back to top