Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 366 for eventual (0.19 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/tooling/internal/provider/continuous/ContinuousBuildActionExecutorTest.groovy

            when:
            def runningBuild = startBuild()
    
            then:
            conditions.eventually {
                waitingForChangesMessageAppears()
            }
    
            when:
            changeListeners.broadcastChange(FileWatcherRegistry.Type.MODIFIED, file.toPath())
    
            then:
            conditions.eventually {
                rebuiltBecauseOfChange()
            }
    
            cleanup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. pkg/kube/inject/watcher_test.go

    				g.Expect(cms.Delete(context.TODO(), step.deleted.Name, metav1.DeleteOptions{})).
    					Should(Succeed())
    			}
    
    			g.Eventually(func() *Config {
    				mu.Lock()
    				defer mu.Unlock()
    				return newConfig
    			}, time.Second).Should(Equal(&c))
    			g.Eventually(func() string {
    				mu.Lock()
    				defer mu.Unlock()
    				return newValues
    			}, time.Second).Should(Equal(valuesConfig))
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 04:22:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/services/LocalRepositoryManager.java

        /**
         * Gets the relative path for a locally installed artifact.
         * Note that the artifact need not actually exist yet at
         * the returned location, the path merely indicates where
         * the artifact would eventually be stored.
         *
         * @param session The session to use, must not be {@code null}.
         * @param artifact The artifact for which to determine the path, must not be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 08 09:10:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. src/internal/goversion/goversion.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package goversion
    
    // Version is the Go 1.x version which is currently
    // in development and will eventually get released.
    //
    // It should be updated at the start of each development cycle to be
    // the version of the next Go 1.x release. See golang.org/issue/40705.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 19 19:23:40 UTC 2024
    - 445 bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurationRequest.java

     *
     */
    public interface BeanConfigurationRequest {
    
        /**
         * Gets the bean to configure. Eventually, a valid request must have a bean set.
         *
         * @return The bean to configure, or {@code null} if none.
         */
        Object getBean();
    
        /**
         * Sets the bean to configure. Eventually, a valid request must have a bean set.
         *
         * @param bean The bean to configure, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. 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)
  7. platforms/core-runtime/functional/src/main/java/org/gradle/internal/lazy/Lazy.java

         */
        default <V> V apply(Function<? super T, V> function) {
            return function.apply(get());
        }
    
        /**
         * Creates another lazy wrapper which will eventually apply the supplied
         * function to the lazily computed value
         *
         * @param mapper the mapping function
         * @param <V> the type of the result of the function
         * @return a new lazy wrapper
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/component/ConfigurationVariantDetailsInternal.java

     */
    public interface ConfigurationVariantDetailsInternal extends ConfigurationVariantDetails {
    
        /**
         * Configure the dependency mapping options for this configuration variant.
         *
         * <p>This method should eventually be moved to {@link ConfigurationVariantDetails} once
         * dependency mapping is stabilized.</p>
         *
         * @param action The action to execute against this variant's dependency mapping details.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/profile/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: Tue Nov 07 08:20:52 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top