Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 159 for eventual (0.3 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/ops/mlir_local_var_op.cc

        .Output("resource: resource")
        .SetShapeFn(shape_inference::UnknownShape)
        .Doc(R"(Creates a handle to an in-scope variable.
    Used by internal passes for temporary representation of local state, which will
    be eventually removed.)");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 08 23:15:13 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. src/runtime/vdso_linux_loong64.go

    	// See cmd/compile/internal/loong64/galign.go arch.MAXWIDTH initialization.
    	vdsoArrayMax = 1<<50 - 1
    )
    
    // not currently described in manpages as of May 2022, but will eventually
    // appear
    // when that happens, see man 7 vdso : loongarch
    var vdsoLinuxVersion = vdsoVersionKey{"LINUX_5.10", 0xae78f70}
    
    var vdsoSymbolKeys = []vdsoSymbolKey{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 23 21:58:55 UTC 2022
    - 793 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. src/cmd/compile/internal/test/fixedbugs_test.go

    		// read by the write barrier code.
    		g = makeT()
    		sink = make([]byte, 1000) // force write barriers to eventually happen
    	}
    }
    func TestIssue15854b(t *testing.T) {
    	const N = 10000
    	a := make([]T, N)
    	for i := 0; i < N; i++ {
    		a = append(a, makeT())
    		sink = make([]byte, 1000) // force write barriers to eventually happen
    	}
    	for i, v := range a {
    		if v.x[0] != 0 {
    			t.Fatalf("a[%d].x[0] clobbered with %x\n", i, v.x[0])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top