Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Inhibt (0.16 sec)

  1. pkg/kubelet/nodeshutdown/systemd/inhibit_linux.go

    	duration := time.Duration(delay) * time.Microsecond
    	return duration, nil
    }
    
    // InhibitShutdown creates an systemd inhibitor by calling logind's Inhibt() and returns the inhibitor lock
    // see https://www.freedesktop.org/wiki/Software/systemd/inhibit/ for more details.
    func (bus *DBusCon) InhibitShutdown() (InhibitLock, error) {
    	obj := bus.SystemBus.Object(logindService, logindObject)
    	what := "shutdown"
    	who := "kubelet"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux.go

    	stop := make(chan struct{})
    	go func() {
    		// Monitor for shutdown events. This follows the logind Inhibit Delay pattern described on https://www.freedesktop.org/wiki/Software/systemd/inhibit/
    		// 1. When shutdown manager starts, an inhibit lock is taken.
    		// 2. When shutdown(true) event is received, process the shutdown and release the inhibit lock.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 08:02:40 UTC 2022
    - 15.5K bytes
    - Viewed (0)
  3. docs/de/docs/advanced/custom-response.md

    Sie akzeptiert die folgenden Parameter:
    
    * `content` – Ein `str` oder `bytes`.
    * `status_code` – Ein `int`-HTTP-Statuscode.
    * `headers` – Ein `dict` von Strings.
    * `media_type` – Ein `str`, der den Medientyp angibt. Z. B. `"text/html"`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 13:05:12 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

        TestGuard guard = new TestGuard(true);
        thread1.callAndAssertThrows(IllegalMonitorStateException.class, waitFor(), guard);
      }
    
      public void testNulls() {
        monitor.enter(); // Inhibit IllegalMonitorStateException
        new NullPointerTester()
            .setDefault(Monitor.Guard.class, new TestGuard(true))
            .testAllPublicInstanceMethods(monitor);
      }
    
      // TODO: Test enter(long, TimeUnit).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/MonitorTestCase.java

        TestGuard guard = new TestGuard(true);
        thread1.callAndAssertThrows(IllegalMonitorStateException.class, waitFor(), guard);
      }
    
      public void testNulls() {
        monitor.enter(); // Inhibit IllegalMonitorStateException
        new NullPointerTester()
            .setDefault(Monitor.Guard.class, new TestGuard(true))
            .testAllPublicInstanceMethods(monitor);
      }
    
      // TODO: Test enter(long, TimeUnit).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/syscall/syscall_windows_test.go

    	if err != nil {
    		t.Skipf("MkdirAll failed: %v", err)
    	}
    	err = os.Chdir(dirname)
    	if err != nil {
    		t.Skipf("Chdir failed: %v", err)
    	}
    	// Change out of the temporary directory so that we don't inhibit its
    	// removal during test cleanup.
    	defer os.Chdir(`\`)
    
    	syscall.Getwd()
    }
    
    func TestGetStartupInfo(t *testing.T) {
    	var si syscall.StartupInfo
    	err := syscall.GetStartupInfo(&si)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 16:33:09 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/regexp/backtrack.go

    			//   b.push(inst.Out, pos, false)
    			//   b.push(inst.Arg, pos, false)
    			// If during the processing of inst.Out, we encounter
    			// inst.Arg via another path, we want to process it then.
    			// Pushing it here will inhibit that. Instead, re-push
    			// inst with arg==true as a reminder to push inst.Arg out
    			// later.
    			if arg {
    				// Finished inst.Out; try inst.Arg.
    				arg = false
    				pc = inst.Arg
    				goto CheckAndLoop
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. src/runtime/mgclimit.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    import "internal/runtime/atomic"
    
    // gcCPULimiter is a mechanism to limit GC CPU utilization in situations
    // where it might become excessive and inhibit application progress (e.g.
    // a death spiral).
    //
    // The core of the limiter is a leaky bucket mechanism that fills with GC
    // CPU time and drains with mutator time. Because the bucket fills and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. pkg/kubelet/nodeshutdown/nodeshutdown_manager_linux_test.go

    				assert.Equal(t, tc.expectedPodToGracePeriodOverride, killedPodsToGracePeriods)
    				assert.Equal(t, tc.expectedDidOverrideInhibitDelay, fakeDbus.didOverrideInhibitDelay, "override system inhibit delay differs")
    				if tc.expectedPodStatuses != nil {
    					for _, pod := range tc.activePods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			continue
    		}
    		args = append(args, gnuArg(&inst, pc, symname, a, &usedPrefixes))
    	}
    
    	// The default is to print the arguments in reverse Intel order.
    	// A few instructions inhibit this behavior.
    	switch inst.Op {
    	case BOUND, LCALL, ENTER, LJMP:
    		// no reverse
    	default:
    		// reverse args
    		for i, j := 0, len(args)-1; i < j; i, j = i+1, j-1 {
    			args[i], args[j] = args[j], args[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top