Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 277 for eventual (0.2 sec)

  1. pilot/pkg/server/instance_test.go

    				}
    			}()
    
    			// Ensure that the component is started.
    			g.Eventually(func() bool {
    				return c.c.started.Load()
    			}).Should(BeTrue())
    
    			// Stop before the tasks end.
    			stop.Close()
    			if c.wait {
    				// Add a little buffer to the task duration.
    				totalWaitTime := shortDuration + (1 * time.Second)
    				g.Eventually(func() bool {
    					return c.c.completed.Load()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 23:02:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/apis.go

    func (c *CompletedConfig) NewCoreGenericConfig() *corerest.GenericConfig {
    	return &corerest.GenericConfig{
    		StorageFactory:              c.Extra.StorageFactory,
    		EventTTL:                    c.Extra.EventTTL,
    		LoopbackClientConfig:        c.Generic.LoopbackClientConfig,
    		ServiceAccountIssuer:        c.Extra.ServiceAccountIssuer,
    		ExtendExpiration:            c.Extra.ExtendExpiration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r65/ToolingApiShutdownCrossVersionSpec.groovy

        void assertNoRunningDaemons() {
            waitFor.eventually {
                toolingApi.daemons.daemons*.assertStopped()
            }
        }
    
        void assertNumberOfRunningDaemons(number) {
            waitFor.eventually {
                assert toolingApi.daemons.daemons.size() == number
                toolingApi.daemons.daemons*.assertBusy()
            }
            // `eventually` throws a runtime exception when the condition is never met
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/options/options.go

    	// Note: the weird ""+ in below lines seems to be the only way to get gofmt to
    	// arrange these text blocks sensibly. Grrr.
    	fs := fss.FlagSet("misc")
    	fs.DurationVar(&s.EventTTL, "event-ttl", s.EventTTL,
    		"Amount of time to retain events.")
    
    	fs.BoolVar(&s.EnableLogsHandler, "enable-logs-handler", s.EnableLogsHandler,
    		"If true, install a /logs handler for the apiserver logs.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/internal/trace/summary_test.go

    		"task0 region":         {trace.EventRegionBegin, trace.EventBad},
    		"region0":              {trace.EventRegionBegin, trace.EventRegionEnd},
    		"region1":              {trace.EventRegionBegin, trace.EventRegionEnd},
    		"unended region":       {trace.EventRegionBegin, trace.EventStateTransition},
    		"post-existing region": {trace.EventRegionBegin, trace.EventBad},
    	}
    	for _, summary := range summaries {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package generic contains a typed wrapper over cache SharedIndexInformer
    // and Lister (maybe eventually should have a home there?)
    //
    // This interface is being experimented with as an easier way to write controllers
    // with a bit less boilerplate.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileSelector.java

     *
     */
    public interface ProfileSelector {
    
        /**
         * Determines the profiles which are active in the specified activation context. Active profiles will eventually be
         * injected into the model.
         *
         * @param profiles The profiles whose activation status should be determined, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Restricted.java

    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 19 07:57:00 UTC 2024
    - 1005 bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraphController.java

        /**
         * Creates a new, empty work graph for this build.
         *
         * Note: Only one thread can be using worker graphs from a build, and this method blocks if some other thread is using a graph for this build.
         * Eventually, this constraint should be removed, so that it is possible to populate and run multiple work graphs concurrently.
         */
        BuildWorkGraph newWorkGraph();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	return workflow.Phase{
    		Name:         "certs [api-server-endpoint]",
    		Short:        "Generate the certificates for the new control plane components",
    		Run:          runControlPlanePrepareCertsPhaseLocal, //NB. eventually in future we would like to break down this in sub phases for each cert or add the --csr option
    		InheritFlags: getControlPlanePreparePhaseFlags("certs"),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top