Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for startMem (0.11 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If repairPods is true, the controller will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
      // Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
      // This requires no RBAC privilege, but will require the CNI agent to run as a privileged pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    		return caseValues[c0], 1
    	case c0 < 0xC2:
    		return 0, 1 // Illegal UTF-8: not a starter, not ASCII.
    	case c0 < 0xE0: // 2-byte UTF-8
    		if len(s) < 2 {
    			return 0, 0
    		}
    		i := caseIndex[c0]
    		c1 := s[1]
    		if c1 < 0x80 || 0xC0 <= c1 {
    			return 0, 1 // Illegal UTF-8: not a continuation byte.
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
  4. src/time/time_test.go

    	loc, err := LoadLocation("Asia/Shanghai")
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	tests := [...]struct {
    		give Time
    		want Time
    	}{
    		// 14 Apr 1991 - Daylight Saving Time Started
    		// When time of "Asia/Shanghai" was about to reach
    		// Sunday, 14 April 1991, 02:00:00 clocks were turned forward 1 hour to
    		// Sunday, 14 April 1991, 03:00:00 local daylight time instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    			}
    
    			// Add/remove the orphan finalizer as the options dictates.
    			// Note that this occurs after checking pendingGraceufl, so
    			// finalizers cannot be updated via DeleteOptions if deletion has
    			// started.
    			existingAccessor, err := meta.Accessor(existing)
    			if err != nil {
    				return nil, err
    			}
    			needsUpdate, newFinalizers := deletionFinalizersForGarbageCollection(ctx, e, existingAccessor, options)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  6. cmd/iam.go

    // Init - initializes config system by reading entries from config/iam
    func (sys *IAMSys) Init(ctx context.Context, objAPI ObjectLayer, etcdClient *etcd.Client, iamRefreshInterval time.Duration) {
    	bootstrapTraceMsg("IAM initialization started")
    	globalServerConfigMu.RLock()
    	s := globalServerConfig
    	globalServerConfigMu.RUnlock()
    
    	openidConfig, err := openid.LookupConfig(s,
    		NewHTTPTransport(), xhttp.DrainBody, globalSite.Region())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. pkg/proxy/endpointschangetracker_test.go

    				delete(e.Annotations, v1.EndpointsLastChangeTriggerTime)
    				fp.addEndpointSlice(e)
    			},
    			expected: map[types.NamespacedName][]time.Time{},
    		},
    		{
    			name: "Endpoints create before tracker started",
    			scenario: func(fp *FakeProxier) {
    				e := createEndpoints("ns", "ep1", t_1)
    				fp.addEndpointSlice(e)
    			},
    			expected: map[types.NamespacedName][]time.Time{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 79.9K bytes
    - Viewed (0)
  8. src/go/printer/nodes.go

    			// and it's not on the same line as the prior expression:
    			// Use a column for the key such that consecutive entries
    			// can align if possible.
    			// (needsLinebreak is set if we started a new line before)
    			p.expr(pair.Key)
    			p.setPos(pair.Colon)
    			p.print(token.COLON, vtab)
    			p.expr(pair.Value)
    		} else {
    			p.expr0(x, depth)
    		}
    
    		if size > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    	//	"(" starts a capturing group
    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    	//	")*)" closes started groups; "*" means that there might be other elements in the comma-separated list
    	rxAsmPlatform = regexp.MustCompile(`(\w+)(/[\w.]+)?(/\w*)?\s*:\s*(` + reMatchCheck + `(?:\s*,\s*` + reMatchCheck + `)*)`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    	if p.numRunes > maxRunes {
    		panic(ErrLarge)
    	}
    	p.checkSize(re)
    	p.checkHeight(re)
    }
    
    func (p *parser) checkSize(re *Regexp) {
    	if p.size == nil {
    		// We haven't started tracking size yet.
    		// Do a relatively cheap check to see if we need to start.
    		// Maintain the product of all the repeats we've seen
    		// and don't track if the total number of regexp nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top