Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 450 for eventual (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kube/watcher/configmapwatcher/configmapwatcher_test.go

    			case step.deleted != nil:
    				g.Expect(cms.Delete(context.TODO(), step.deleted.Name, metav1.DeleteOptions{})).
    					Should(Succeed())
    			}
    
    			if step.expectCalled {
    				g.Eventually(getCalled, time.Second).Should(Equal(true))
    				g.Eventually(getCM, time.Second).Should(Equal(newCM))
    			} else {
    				g.Consistently(getCalled).Should(Equal(false))
    			}
    		})
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/fixedbugs/issue51658.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This test checks syntax errors which differ between
    // go/parser and the syntax package.
    // TODO: consolidate eventually
    
    package p
    
    type F { // ERRORx "expected type|type declaration"
    	float64
    } // ERRORx "expected declaration|non-declaration statement"
    
    func _[T F | int](x T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1016 bytes
    - Viewed (0)
Back to top