Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for isInitialized (0.2 sec)

  1. src/cmd/internal/obj/ppc64/asm9.go

    // operand combinations for a class of instruction.  The variable oprange indexes
    // all valid ppc64 opcodes.
    //
    // oprange is initialized to point a slice within optab which contains the valid
    // operand combinations for a given instruction.  This is initialized from buildop.
    //
    // Likewise, each slice of optab is dynamically sorted using the ocmp Sort interface
    // to arrange entries to minimize text size of each opcode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    	HistogramBucketLabel string            `json:"HistogramBucketLabel"`
    	Histogram            map[string]uint64 `json:"Histogram"`
    }
    
    // MetricsGroupV2 are a group of metrics that are initialized together.
    type MetricsGroupV2 struct {
    	metricsCache     *cachevalue.Cache[[]MetricV2] `msg:"-"`
    	cacheInterval    time.Duration
    	metricsGroupOpts MetricsGroupOpts
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		ctxt.Retpoline = false // don't keep printing
    	}
    
    	pjc := makePjcCtx(ctxt)
    
    	if s.P != nil {
    		return
    	}
    
    	if ycover[0] == 0 {
    		ctxt.Diag("x86 tables not initialized, call x86.instinit first")
    	}
    
    	for p := s.Func().Text; p != nil; p = p.Link {
    		if p.To.Type == obj.TYPE_BRANCH && p.To.Target() == nil {
    			p.To.SetTarget(p)
    		}
    		if p.As == AADJSP {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_control_test.go

    		if err != nil {
    			return err
    		}
    		sort.Sort(ascendingOrdinal(pods))
    		initialized := false
    		for _, pod := range pods {
    			if pod.Status.Phase == "" {
    				if pods, err = om.setPodPending(set, getOrdinal(pod)); err != nil {
    					return err
    				}
    				break
    			}
    		}
    		if initialized {
    			continue
    		}
    
    		if len(pods) > 0 {
    			idx := int(rand.Int63n(int64(len(pods))))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	}
    
    	// NewInitializedVolumePluginMgr initializes some storageErrors on the Kubelet runtimeState (in csi_plugin.go init)
    	// which affects node ready status. This function must be called before Kubelet is initialized so that the Node
    	// ReadyState is accurate with the storage state.
    	klet.volumePluginMgr, err =
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	DefaultGODEBUG string `json:",omitempty"` // default GODEBUG setting (only for Name=="main")
    
    	// Stale and StaleReason remain here *only* for the list command.
    	// They are only initialized in preparation for list execution.
    	// The regular build determines staleness on the fly during action execution.
    	Stale       bool   `json:",omitempty"` // would 'go install' do anything for this package?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/webcomponents.min.js

    t=n(e);document.head.appendChild(t);var r=[];if(t.sheet)try{r=t.sheet.cssRules}catch(o){}else console.warn("sheet not found",t);return t.parentNode.removeChild(t),r}function o(){C.initialized=!0,document.body.appendChild(C);var e=C.contentDocument,t=e.createElement("base");t.href=document.baseURI,e.head.appendChild(t)}function i(e){C.initialized||o(),document.body.appendChild(C),e(C.contentDocument),document.body.removeChild(C)}function a(e,t){if(t){var o;if(e.match("@import")&&D){var a=n(e);i(function(e){e.h...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_node_status_test.go

    					},
    				},
    			},
    			needsUpdate: true,
    		}, {
    			name:         "no update needed but capacity and allocatable of existing node should be initialized",
    			initialNode:  &v1.Node{},
    			existingNode: &v1.Node{},
    			expectedNode: &v1.Node{
    				Status: v1.NodeStatus{
    					Capacity:    v1.ResourceList{},
    					Allocatable: v1.ResourceList{},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    logging.LoggerManager loggerManager; protected java.util.Map childContainers; protected java.util.Date creationDate; protected boolean reloadingEnabled; private ThreadLocal lookupRealm; private classworlds.realm.ClassRealm staticLookupRealm; boolean initialized; public classworlds.realm.ClassRealm setLookupRealm(classworlds.realm.ClassRealm); public classworlds.realm.ClassRealm getLookupRealm(); public void DefaultPlexusContain() throws PlexusContainerExcep; public void DefaultPlexusContain(String, java.util.Map)...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		return v1.PodFailed
    	}
    
    	switch {
    	case pendingInitialization > 0 &&
    		// This is needed to handle the case where the pod has been initialized but
    		// the restartable init containers are restarting and the pod should not be
    		// placed back into v1.PodPending since the regular containers have run.
    		!kubecontainer.HasAnyRegularContainerStarted(&spec, info):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top