Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for endMem (0.76 sec)

  1. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	return nil
    }
    
    func (m *manager) Allocate(p *v1.Pod, c *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(p)
    
    	// Garbage collect any stranded resources before allocating CPUs.
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. docs/pt/docs/history-design-future.md

    Isso significa que o **FastAPI** foi testado especificamente com os editores usados por 80% dos desenvolvedores Python. Como a maioria dos outros editores tendem a funcionar de forma similar, todos os seus benefícios devem funcionar para virtualmente todos os editores.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_network_linux.go

    		// creates a security hole (https://issue.k8s.io/90259) which this
    		// iptables rule mitigates. This rule should have been added to
    		// kube-proxy, but it mistakenly ended up in kubelet instead, and we are
    		// keeping it in kubelet for now in case other third-party components
    		// depend on it.
    		if _, err := iptClient.EnsureRule(utiliptables.Append, utiliptables.TableFilter, KubeFirewallChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 17 20:51:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

          if (position.index != 0) {
            // Something was parsed. It's possible the entire string was not consumed but we ignore
            // that. If any of the BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS ended in "'GMT'" we'd have
            // to also check that position.getIndex() == value.length() otherwise parsing might have
            // terminated early, ignoring things like "+01:00". Leaving this as != 0 means that any
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/memory_manager.go

    func (m *manager) Allocate(pod *v1.Pod, container *v1.Container) error {
    	// The pod is during the admission phase. We need to save the pod to avoid it
    	// being cleaned before the admission ended
    	m.setPodPendingAdmission(pod)
    
    	// Garbage collect any stranded resources before allocation
    	m.removeStaleState()
    
    	m.Lock()
    	defer m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    	err := sysctl(mib, old, oldlen, nil, 0)
    	if err != nil {
    		// Utsname members on Dragonfly are only 32 bytes and
    		// the syscall returns ENOMEM in case the actual value
    		// is longer.
    		if err == ENOMEM {
    			err = nil
    		}
    	}
    	return err
    }
    
    func Uname(uname *Utsname) error {
    	mib := []_C_int{CTL_KERN, KERN_OSTYPE}
    	n := unsafe.Sizeof(uname.Sysname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/io/LineBuffer.java

       * @throws IOException if an I/O error occurs
       * @see #finish
       */
      protected void add(char[] cbuf, int off, int len) throws IOException {
        int pos = off;
        if (sawReturn && len > 0) {
          // Last call to add ended with a CR; we can handle the line now.
          if (finishLine(cbuf[pos] == '\n')) {
            pos++;
          }
        }
    
        int start = pos;
        for (int end = off + len; pos < end; pos++) {
          switch (cbuf[pos]) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/LineBuffer.java

       * @throws IOException if an I/O error occurs
       * @see #finish
       */
      protected void add(char[] cbuf, int off, int len) throws IOException {
        int pos = off;
        if (sawReturn && len > 0) {
          // Last call to add ended with a CR; we can handle the line now.
          if (finishLine(cbuf[pos] == '\n')) {
            pos++;
          }
        }
    
        int start = pos;
        for (int end = off + len; pos < end; pos++) {
          switch (cbuf[pos]) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/versions.md

    Nachdem Sie Tests erstellt haben, können Sie die **FastAPI**-Version auf eine neuere Version aktualisieren und sicherstellen, dass Ihr gesamter Code ordnungsgemäß funktioniert, indem Sie Ihre Tests ausführen.
    
    Wenn alles funktioniert oder nachdem Sie die erforderlichen Änderungen vorgenommen haben und alle Ihre Tests bestehen, können Sie Ihr `fastapi` an die neue aktuelle Version pinnen.
    
    ## Über Starlette
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/bigger-applications.md

    Wir können das alles deklarieren, ohne den ursprünglichen `APIRouter` ändern zu müssen, indem wir diese Parameter an `app.include_router()` übergeben:
    
    ```Python hl_lines="14-17" title="app/main.py"
    {!../../../docs_src/bigger_applications/app/main.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top