Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for destroyFn (0.71 sec)

  1. src/runtime/proc.go

    		gp.m.p.ptr().status = _Prunning
    		gp.m.p.ptr().mcache.prepareForSweep()
    	} else {
    		// release the current P and acquire allp[0].
    		//
    		// We must do this before destroying our current P
    		// because p.destroy itself has write barriers, so we
    		// need to do that from a valid P.
    		if gp.m.p != 0 {
    			trace := traceAcquire()
    			if trace.ok() {
    				// Pretend that we were descheduled
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_test.go

    			if functionName == "Destroy" {
    				destroyCount = destroyCount + 1
    			}
    		}
    		return destroyCount >= 1, nil
    	})
    
    	assert.NoError(t, err, "wait should not return error")
    	// housekeeping can get called multiple times. The cgroup Destroy() is
    	// done within a goroutine and can get called multiple times, so the
    	// Destroy() count in not deterministic on the actual number.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    (t[r][e]=this).$el=this.$options.el=this.$options.el||t,Yt(t,document)&&this._callConnected())},n.prototype.$reset=function(){this._callDisconnected(),this._callConnected()},n.prototype.$destroy=function(t){void 0===t&&(t=!1);var e=this.$options,i=e.el,n=e.name;i&&this._callDisconnected(),this._callHook("destroy"),i&&i[r]&&(delete i[r][n],O(i[r])||delete i[r],t&&ke(this.$el))},n.prototype.$create=function(t,e,i){return n[t](e,i)},n.prototype.$update=function(t,e){void 0===t&&(t=this.$el),n.updat...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return &genericapitesting.Simple{}
    }
    
    func (storage *SimpleRESTStorage) NewList() runtime.Object {
    	return &genericapitesting.SimpleList{}
    }
    
    func (storage *SimpleRESTStorage) Destroy() {
    }
    
    func (storage *SimpleRESTStorage) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error) {
    	storage.checkContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    		}
    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    String id=135
    	data="net.newTCPConn"
    String id=136
    	data="syscall.Close"
    String id=137
    	data="internal/poll.(*SysFile).destroy"
    String id=138
    	data="/usr/local/google/home/mknyszek/work/go-1/src/internal/poll/fd_unixjs.go"
    String id=139
    	data="internal/poll.(*FD).destroy"
    String id=140
    	data="internal/poll.(*FD).decref"
    String id=141
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	// remove any cgroups in the hierarchy for pods that are no longer running.
    	if kl.cgroupsPerQOS {
    		pcm := kl.containerManager.NewPodContainerManager()
    		name, _ := pcm.GetPodContainerName(pod)
    		if err := pcm.Destroy(name); err != nil {
    			return err
    		}
    		klog.V(4).InfoS("Pod termination removed cgroups", "pod", klog.KObj(pod), "podUID", pod.UID)
    	}
    
    	kl.usernsManager.Release(pod.UID)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top