Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,909 for became (0.2 sec)

  1. src/runtime/lock_js.go

    // If an event handler returned, we resume it and it will pause the execution.
    // beforeIdle either returns the specific goroutine to schedule next or
    // indicates with otherReady that some goroutine became ready.
    // TODO(drchase): need to understand if write barriers are really okay in this context.
    //
    //go:yeswritebarrierrec
    func beforeIdle(now, pollUntil int64) (gp *g, otherReady bool) {
    	delay := int64(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:02:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. istioctl/pkg/wait/wait.go

    				case <-ctx.Done():
    					printVerbosef(cmd, "timeout")
    					// I think this means the timeout has happened:
    					t.Stop()
    					errTmpl := "timeout expired before resource %s became effective on %s"
    					var errMsg string
    					if proxyFlag != "" {
    						errMsg = fmt.Sprintf(errTmpl, targetResource, proxyFlag)
    					} else {
    						errMsg = fmt.Sprintf(errTmpl, targetResource, "all sidecars")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 17 12:24:17 UTC 2024
    - 10.1K bytes
    - Viewed (1)
  3. src/regexp/testdata/repetition.dat

    # These test a fixed bug in my regex-tdfa that did not keep the expanded
    # form properly grouped, so right association did the wrong thing with
    # these ambiguous patterns (crafted just to test my code when I became
    # suspicious of my implementation).  The first subexpression should use
    # "ab" then "a" then "bcd".
    
    # OS X / FreeBSD / NetBSD badly fail many of these, with impossible
    # results like (0,6)(4,5)(6,6).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    little a certain full bright purple, which Painters use, until the Orpiment ceased to be yellow, and became of a pale red. Then I diluted that red by adding a little _Viride Æris_, and a little more blue Bise than _Viride Æris_, until it became of such a grey or pale white, as verged to no one of the Colours more than to another. For thus it became of a Colour equal in Whiteness to that of Ashes, or of Wood newly cut, or of a Man's Skin. The Orpiment reflected more Light than did any other of the Powders,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  5. src/testdata/Isaac.Newton-Opticks.txt

    little and little a certain full bright purple, which Painters use,
    until the Orpiment ceased to be yellow, and became of a pale red. Then I
    diluted that red by adding a little _Viride Æris_, and a little more
    blue Bise than _Viride Æris_, until it became of such a grey or pale
    white, as verged to no one of the Colours more than to another. For thus
    it became of a Colour equal in Whiteness to that of Ashes, or of Wood
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  6. pilot/pkg/leaderelection/k8sleaderelection/leaderelection.go

    		succeeded = le.tryAcquireOrRenew(ctx)
    		le.maybeReportTransition()
    		if !succeeded {
    			klog.V(4).Infof("failed to acquire lease %v", desc)
    			return
    		}
    		le.config.Lock.RecordEvent("became leader")
    		le.metrics.leaderOn(le.config.Name)
    		klog.Infof("successfully acquired lease %v", desc)
    		cancel()
    	}, le.config.RetryPeriod, JitterFactor, true, ctx.Done())
    	return succeeded
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 04:04:42 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  7. src/debug/gosym/symtab.go

    func (e UnknownFileError) Error() string { return "unknown file: " + string(e) }
    
    // UnknownLineError represents a failure to map a line to a program
    // counter, either because the line is beyond the bounds of the file
    // or because there is no code on the given line.
    type UnknownLineError struct {
    	File string
    	Line int
    }
    
    func (e *UnknownLineError) Error() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  8. pkg/scheduler/eventhandlers.go

    		return
    	}
    
    	logger.V(4).Info("Update event for node", "node", klog.KObj(newNode))
    	nodeInfo := sched.Cache.UpdateNode(logger, oldNode, newNode)
    	// Only requeue unschedulable pods if the node became more schedulable.
    	for _, evt := range nodeSchedulingPropertiesChange(newNode, oldNode) {
    		sched.SchedulingQueue.MoveAllToActiveOrBackoffQueue(logger, evt, oldNode, newNode, preCheckForNode(nodeInfo))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. cluster/gce/config-default.sh

    # since it's a critical component, but in the first release we need a way to disable
    # this in case of stability issues.
    # TODO(piosz) remove this option once Metrics Server became a stable thing.
    export ENABLE_METRICS_SERVER="${KUBE_ENABLE_METRICS_SERVER:-true}"
    
    # Optional: Metadata agent to setup as part of the cluster bring up:
    #   none        - No metadata agent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. pkg/registry/core/service/storage/storage.go

    // defaultOnReadService defaults a single Service.
    func (r *REST) defaultOnReadService(service *api.Service) {
    	if service == nil {
    		return
    	}
    
    	// We might find Services that were written before ClusterIP became plural.
    	// We still want to present a consistent view of them.
    	normalizeClusterIPs(After{service}, Before{nil})
    
    	// Set ipFamilies and ipFamilyPolicy if needed.
    	r.defaultOnReadIPFamilies(service)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top