Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 450 for eventual (0.14 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. src/net/write_unix_test.go

    		<-c
    		return nil
    	}
    	client := func(ss *TCPConn) error {
    		// Tell the server to return when we return.
    		defer close(c)
    
    		// Loop writing to the server. The server is not reading
    		// anything, so this will eventually block, and then time out.
    		b := bytes.Repeat([]byte{'a'}, 8192)
    		cagain := 0
    		for {
    			n, err := ss.conn.fd.pfd.WriteOnce(b)
    			if n > 0 {
    				cagain = 0
    			}
    			switch err {
    			case nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  3. pkg/registry/core/event/strategy_test.go

    				FieldPath:       "",
    			},
    			Reason: "ForTesting",
    			Source: api.EventSource{Component: "test"},
    			Type:   api.EventTypeNormal,
    		}
    	}
    	eventA := makeEvent("eventA")
    	eventB := makeEvent("eventB")
    	errList := Strategy.ValidateUpdate(context.Background(), eventA, eventB)
    	if len(errList) == 0 {
    		t.Errorf("ValidateUpdate should fail on name change")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

    import org.gradle.internal.HasInternalProtocol;
    
    import java.util.Comparator;
    
    /**
     * <p>A chain of compatibility checks, implemented as action rules. By default
     * the chain is empty and will eventually tell the values are incompatible if no rule expressed
     * an opinion.</p>
     *
     * <p>For a given set of rules, the execution is done <i>in order</i>, and interrupts as soon as a rule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  7. 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)
  8. pkg/kube/kclient/index_test.go

    	assertIndex(k2, pod2) // New one should be there, eventually
    
    	// Create another pod with the same SA; we ought to find multiple now.
    	c.Kube().CoreV1().Pods("ns").Create(context.Background(), pod3, metav1.CreateOptions{})
    	assertIndex(k1, pod1, pod3) // Original one must still persist
    	assertIndex(k2, pod2)       // New one should be there, eventually
    
    	pod1Alt := pod1.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top