Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 568 for Dedicated (0.23 sec)

  1. pkg/scheduler/scheduler.go

    func (sched *Scheduler) Run(ctx context.Context) {
    	logger := klog.FromContext(ctx)
    	sched.SchedulingQueue.Run(logger)
    
    	// We need to start scheduleOne loop in a dedicated goroutine,
    	// because scheduleOne function hangs on getting the next item
    	// from the SchedulingQueue.
    	// If there are no new pods to schedule, it will be hanging there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  2. internal/etag/etag.go

    // However, some of them assume that the header key has to be "ETag"
    // (case-sensitive) and will fail otherwise.
    // Further, some clients require that the ETag value is a double-quoted
    // string. Therefore, this package provides dedicated functions for
    // adding and extracting the ETag to/from HTTP headers.
    package etag
    
    import (
    	"bytes"
    	"crypto/hmac"
    	"crypto/md5"
    	"encoding/base64"
    	"encoding/hex"
    	"errors"
    	"fmt"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. src/syscall/exec_plan9.go

    // thread, which runs the process and subsequently waits
    // for it to finish, communicating the process stats back
    // to any goroutines that may have been waiting on it.
    //
    // Such a dedicated goroutine is needed because on
    // Plan 9, only the parent thread can wait for a child,
    // whereas goroutines tend to jump OS threads (e.g.,
    // between starting a process and running Wait(), the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    We have only scratched the surface here, so we recommend that you read the <<core_dependency_management.adoc#dependency_management_in_gradle,dedicated dependency management chapters>> once you’re comfortable with the basics of building {cpp} projects with Gradle.
    
    Some common scenarios that require further reading include:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// RemoveContainer is called after Kubelet decides to kill or delete a
    	// container. After this call, the CPU manager stops trying to reconcile
    	// that container and any CPUs dedicated to the container are freed.
    	RemoveContainer(containerID string) error
    
    	// State returns a read-only interface to the internal CPU manager state.
    	State() state.Reader
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  6. src/runtime/mgclimit.go

    	// the GC is thrashing.
    	//
    	// Note that this can cause the limiter to turn on even if it's not needed. For
    	// instance, on a system with 32 Ps but only 1 running goroutine, each GC will have
    	// 8 dedicated GC workers. Assuming the GC cycle is half mark phase and half sweep
    	// phase, then the GC CPU utilization over that cycle, with idle time removed, will
    	// be 8/(8+2) = 80%. Even though the limiter turns on, though, assist should be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  7. operator/pkg/translate/translate_value.go

    	t.ValuesToComponentName = make(map[string]name.ComponentName)
    	for valKey, outVal := range ts.APIMapping {
    		t.APIMapping[outVal.OutPath] = &Translation{valKey, nil}
    	}
    	for cn, cm := range ts.ComponentMaps {
    		// we use dedicated translateGateway for gateway instead
    		if !skipTranslate[cn] && !cm.SkipReverseTranslate && !cn.IsGateway() {
    			t.ValuesToComponentName[cm.ToHelmValuesTreeRoot] = cn
    		}
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. operator/README.md

              maxReplicas: 10 # ... default 5
              minReplicas: 2  # ... default 1
            nodeSelector: # ... default empty
              master: "true"
            tolerations: # ... default empty
            - key: dedicated
              operator: Exists
              effect: NoSchedule
            - key: CriticalAddonsOnly
              operator: Exists
    ```
    
    The K8s settings are defined in detail in the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  9. src/runtime/stubs.go

    	return unsafe.Pointer(uintptr(p) + x)
    }
    
    // getg returns the pointer to the current g.
    // The compiler rewrites calls to this function into instructions
    // that fetch the g directly (from TLS or from the dedicated register).
    func getg() *g
    
    // mcall switches from the g to the g0 stack and invokes fn(g),
    // where g is the goroutine that made the call.
    // mcall saves g's current PC/SP in g->sched so that it can be restored later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. docs/LICENSE

    licenses. Notwithstanding, Creative Commons may elect to apply one of
    its public licenses to material it publishes and in those instances
    will be considered the “Licensor.” The text of the Creative Commons
    public licenses is dedicated to the public domain under the CC0 Public
    Domain Dedication. Except for the limited purpose of indicating that
    material is shared under a Creative Commons public license or as
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
Back to top