Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 157 for elided (0.11 sec)

  1. src/runtime/traceruntime.go

    //
    // Must be paired with a traceExitedSyscall call.
    func traceExitingSyscall() {
    	trace.exitingSyscall.Add(1)
    }
    
    // traceExitedSyscall marks a goroutine as having exited the syscall slow path.
    func traceExitedSyscall() {
    	trace.exitingSyscall.Add(-1)
    }
    
    // Gomaxprocs emits a ProcsChange event.
    func (tl traceLocker) Gomaxprocs(procs int32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/named.go

    // presented to the type checker, or the same sequence of NewMethod and AddMethod
    // calls, the mapping from method index to corresponding method remains the same.
    // But the specific ordering is not specified and must not be relied on as it may
    // change in the future.
    func (t *Named) Method(i int) *Func {
    	t.resolve()
    
    	if t.state() >= complete {
    		return t.methods[i]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    }
    
    // GetPods returns a list of containers grouped by pods. The boolean parameter
    // specifies whether the runtime returns all containers including those already
    // exited and dead containers (used for garbage collection).
    func (m *kubeGenericRuntimeManager) GetPods(ctx context.Context, all bool) ([]*kubecontainer.Pod, error) {
    	pods := make(map[kubetypes.UID]*kubecontainer.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__resource.k8s.io__v1alpha2_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 656.6K bytes
    - Viewed (0)
  5. src/go/types/named.go

    // presented to the type checker, or the same sequence of NewMethod and AddMethod
    // calls, the mapping from method index to corresponding method remains the same.
    // But the specific ordering is not specified and must not be relied on as it may
    // change in the future.
    func (t *Named) Method(i int) *Func {
    	t.resolve()
    
    	if t.state() >= complete {
    		return t.methods[i]
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_node_status.go

    		nodestatus.VolumesInUse(kl.volumeManager.ReconcilerStatesHasBeenSynced, kl.volumeManager.GetVolumesInUse),
    		// TODO(mtaufen): I decided not to move this setter for now, since all it does is send an event
    		// and record state back to the Kubelet runtime object. In the future, I'd like to isolate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. cmd/api-response.go

    	Prefix             string
    	EncodingType       string `xml:"EncodingType,omitempty"`
    	MaxUploads         int
    	IsTruncated        bool
    
    	// List of pending uploads.
    	Uploads []Upload `xml:"Upload"`
    
    	// Delimed common prefixes.
    	CommonPrefixes []CommonPrefix
    }
    
    // ListBucketsResponse - format for list buckets response
    type ListBucketsResponse struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    		apiVersionsForDiscovery := []metav1.GroupVersionForDiscovery{}
    		for _, groupVersion := range apiGroupInfo.PrioritizedVersions {
    			// Check the config to make sure that we elide versions that don't have any resources
    			if len(apiGroupInfo.VersionedResourcesStorageMap[groupVersion.Version]) == 0 {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/controllermanager.go

    	if leaderMigrator != nil {
    		// Wait for Service Account Token Controller to start before acquiring the migration lock.
    		// At this point, the main lock must have already been acquired, or the KCM process already exited.
    		// We wait for the main lock before acquiring the migration lock to prevent the situation
    		//  where KCM instance A holds the main lock while KCM instance B holds the migration lock.
    		<-leaderMigrator.MigrationReady
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. hack/lib/golang.sh

    kube::golang::build_binaries() {
      V=2 kube::log::info "Go version: $(GOFLAGS='' go version)"
    
      local host_platform
      host_platform=$(kube::golang::host_platform)
    
      # These are "local" but are visible to and relied on by functions this
      # function calls.  They are effectively part of the calling API to
      # build_binaries_for_platform.
      local goflags goldflags gogcflags gotags
    
      goflags=()
      gogcflags="${GOGCFLAGS:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top