Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 158 for onStop (0.22 sec)

  1. src/runtime/asm_arm64.s

    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. 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 deletePods is true, the controller will delete the broken pod. The pod will then be rescheduled, hopefully onto a node that is fully ready.
      // Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
      bool deletePods = 7;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check.go

    func (check *Checker) later(f func()) *action {
    	i := len(check.delayed)
    	check.delayed = append(check.delayed, action{f: f})
    	return &check.delayed[i]
    }
    
    // push pushes obj onto the object path and returns its index in the path.
    func (check *Checker) push(obj Object) int {
    	check.objPath = append(check.objPath, obj)
    	return len(check.objPath) - 1
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	}
    	dc.queue = controllers.NewQueue("gateway deployment",
    		controllers.WithReconciler(dc.Reconcile),
    		controllers.WithMaxAttempts(5))
    
    	// Set up a handler that will add the parent Gateway object onto the queue.
    	// The queue will only handle Gateway objects; if child resources (Service, etc) are updated we re-add
    	// the Gateway to the queue and reconcile the state of the world.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. pkg/controller/daemon/update.go

    				if candidateNewNodes == nil {
    					candidateNewNodes = make([]string, 0, maxSurge)
    				}
    				candidateNewNodes = append(candidateNewNodes, nodeName)
    			}
    		default:
    			// we have already surged onto this node, determine our state
    			if !podutil.IsPodAvailable(newPod, ds.Spec.MinReadySeconds, metav1.Time{Time: now}) {
    				// we're waiting to go available here
    				numSurge++
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 16:53:53 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// Like TaintEffectNoSchedule, but the scheduler tries not to schedule
    	// new pods onto the node, rather than prohibiting new pods from scheduling
    	// onto the node entirely. Enforced by the scheduler.
    	TaintEffectPreferNoSchedule TaintEffect = "PreferNoSchedule"
    	// NOT YET IMPLEMENTED. TODO: Uncomment field once it is implemented.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster.go

    	}
    	return configgen.buildClusters(proxy, req, services)
    }
    
    // BuildDeltaClusters generates the deltas (add and delete) for a given proxy. Currently, only service changes are reflected with deltas.
    // Otherwise, we fall back onto generating everything.
    func (configgen *ConfigGeneratorImpl) BuildDeltaClusters(proxy *model.Proxy, updates *model.PushRequest,
    	watched *model.WatchedResource,
    ) ([]*discovery.Resource, []string, model.XdsLogDetails, bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. src/runtime/asm_ppc64x.s

    	// Set m->sched.sp = SP, so that if a panic happens
    	// during the function we are about to execute, it will
    	// have a valid SP to run on the g0 stack.
    	// The next few lines (after the havem label)
    	// will save this SP onto the stack and then write
    	// the same SP back to m->sched.sp. That seems redundant,
    	// but if an unrecovered panic happens, unwindm will
    	// restore the g->sched.sp from the stack location
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         * <p>
         * Effective properties are computed from system, user and optionally project properties, layered with
         * defined precedence onto each other to achieve proper precedence. Precedence is defined as:
         * <ul>
         *     <li>System properties (lowest precedence)</li>
         *     <li>Project properties (optional)</li>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. src/testing/fuzz.go

    		for i := range c {
    			c[i].IsSeed = true // these are all seed corpus values
    			if f.fuzzContext.mode == fuzzCoordinator {
    				// If this is the coordinator process, zero the values, since we don't need
    				// to hold onto them.
    				c[i].Values = nil
    			}
    		}
    
    		f.corpus = append(f.corpus, c...)
    	}
    
    	// run calls fn on a given input, as a subtest with its own T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top