Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 323 for xremove (0.16 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			resetStatusFn: func(status *kubecontainer.PodStatus) {
    				m.livenessManager.Remove(status.ContainerStatuses[2].ID)
    			},
    		},
    		"startupProbe has not been run; do nothing": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    				m.startupManager.Remove(status.ContainerStatuses[1].ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    func (d *desiredState) copy(x *desiredState) {
    	d.entries = append(d.entries[:0], x.entries...)
    	d.avoid = x.avoid
    }
    
    // remove removes the desired registers for vid and returns them.
    func (d *desiredState) remove(vid ID) [4]register {
    	for i := range d.entries {
    		if d.entries[i].ID == vid {
    			regs := d.entries[i].regs
    			d.entries[i] = d.entries[len(d.entries)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	{67, "EPROCLIM", "too many processes"},
    	{68, "EUSERS", "too many users"},
    	{69, "EDQUOT", "disc quota exceeded"},
    	{70, "ESTALE", "stale NFS file handle"},
    	{71, "EREMOTE", "too many levels of remote in path"},
    	{72, "EBADRPC", "RPC struct is bad"},
    	{73, "ERPCMISMATCH", "RPC version wrong"},
    	{74, "EPROGUNAVAIL", "RPC prog. not avail"},
    	{75, "EPROGMISMATCH", "program version wrong"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		// In such cases, this plugin may miss some events that actually make pods schedulable.
    		// As a workaround, we add UpdateNodeTaint event to catch the case.
    		// We can remove UpdateNodeTaint when we remove the preCheck feature.
    		// See: https://github.com/kubernetes/kubernetes/issues/110175
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    // support multiple types of params this function needs to be augmented
    //
    // PolicyTracker expects FakePolicyDefinition and FakePolicyBinding types
    // !TODO: refactor this test/framework to remove startInformers argument and
    // clean up the return args, and in general make it more accessible.
    func setupTestCommon(
    	t *testing.T,
    	compiler *fakeCompiler,
    	matcher generic.PolicyMatcher,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            stream(user.getGroupNames()).of(stream -> stream.forEach(name -> {
                                if (oldGroupList.contains(name)) {
                                    oldGroupList.remove(name);
                                    newGroupList.remove(name);
                                }
                            }));
                            oldGroupList.stream().forEach(name -> {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

     * recently run) binary, so remove the output file before writing it.
     * On Windows 7, remove() can force a subsequent create() to fail.
     * S_ISREG() does not exist on Plan 9.
     */
    func mayberemoveoutfile() {
    	if fi, err := os.Lstat(*flagOutfile); err == nil && !fi.Mode().IsRegular() {
    		return
    	}
    	os.Remove(*flagOutfile)
    }
    
    func libinit(ctxt *Link) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    	-ms-text-size-adjust: 100%;
    	/* 2 */
    	-webkit-text-size-adjust: 100%;
    	/* 2 */
    }
    
    /** Remove default margin. */
    body {
    	margin: 0;
    }
    
    /* ========================================================================== Links ========================================================================== */
    /** Remove the gray background color from active links in IE 10. */
    a {
    	background: transparent;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. src/syscall/zerrors_openbsd_mips64.go

    	EPROGMISMATCH   = Errno(0x4b)
    	EPROGUNAVAIL    = Errno(0x4a)
    	EPROTO          = Errno(0x5f)
    	EPROTONOSUPPORT = Errno(0x2b)
    	EPROTOTYPE      = Errno(0x29)
    	ERANGE          = Errno(0x22)
    	EREMOTE         = Errno(0x47)
    	EROFS           = Errno(0x1e)
    	ERPCMISMATCH    = Errno(0x49)
    	ESHUTDOWN       = Errno(0x3a)
    	ESOCKTNOSUPPORT = Errno(0x2c)
    	ESPIPE          = Errno(0x1d)
    	ESRCH           = Errno(0x3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 66.7K bytes
    - Viewed (0)
  10. src/syscall/zerrors_netbsd_amd64.go

    	EPROGMISMATCH   = Errno(0x4b)
    	EPROGUNAVAIL    = Errno(0x4a)
    	EPROTO          = Errno(0x60)
    	EPROTONOSUPPORT = Errno(0x2b)
    	EPROTOTYPE      = Errno(0x29)
    	ERANGE          = Errno(0x22)
    	EREMOTE         = Errno(0x47)
    	EROFS           = Errno(0x1e)
    	ERPCMISMATCH    = Errno(0x49)
    	ESHUTDOWN       = Errno(0x3a)
    	ESOCKTNOSUPPORT = Errno(0x2c)
    	ESPIPE          = Errno(0x1d)
    	ESRCH           = Errno(0x3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 67.1K bytes
    - Viewed (0)
Back to top