Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 138 for Executer (0.34 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == toImmutable(expectedUnpackedValue)
            1 * sideEffect1.execute("some value")
            then: // ensure ordering
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		// Before execute
    		if err := testEnv.updateVolumes(ctx, scenario.apiPVs); err != nil {
    			t.Errorf("Failed to update PVs: %v", err)
    		}
    		if err := testEnv.updateClaims(ctx, scenario.apiPVCs); err != nil {
    			t.Errorf("Failed to update PVCs: %v", err)
    		}
    
    		// Execute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                    @javax.inject.Inject
                    ModifyDependencyRule(Attribute attribute) {
                        this.attribute = attribute
                    }
    
                    void execute(ComponentMetadataContext context) {
                        context.details.allVariants {
                            withDependencies {
                                it.each {
                                   it.attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. cmd/test-utils_test.go

    //
    //	User-Agent:
    //
    //	    This is ignored from signing because signing this causes problems with generating pre-signed URLs
    //	    (that are executed by other agents) or when customers pass requests through proxies, which may
    //	    modify the user-agent.
    //
    //	Authorization:
    //
    //	    Is skipped for obvious reasons
    var ignoredHeaders = map[string]bool{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	postExecutePanicingFilter.postExecutePanic = true
    
    	testCases := []struct {
    		name   string
    		filter *fakeWatchApfFilter
    	}{
    		{
    			name:   "pre-execute panic",
    			filter: preExecutePanicingFilter,
    		},
    		{
    			name:   "post-execute panic",
    			filter: postExecutePanicingFilter,
    		},
    	}
    
    	onExecuteFunc := func() {
    		time.Sleep(5 * time.Second)
    	}
    	postExecuteFunc := func() {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    // bulkBarrierPreWrite executes a write barrier
    // for every pointer slot in the memory range [src, src+size),
    // using pointer/scalar information from [dst, dst+size).
    // This executes the write barriers necessary before a memmove.
    // src, dst, and size must be pointer-aligned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

     *     .build();
     * Response response = eagerClient.newCall(request).execute();
     * ```
     *
     * ## Shutdown Isn't Necessary
     *
     * The threads and connections that are held will be released automatically if they remain idle. But
     * if you are writing a application that needs to aggressively release unused resources you may do
     * so.
     *
     * Shutdown the dispatcher's executor service with [shutdown()][ExecutorService.shutdown]. This will
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  8. src/testing/testing.go

    //	    }
    //	}
    //
    // For more detail, run "go help test" and "go help testflag".
    //
    // # Benchmarks
    //
    // Functions of the form
    //
    //	func BenchmarkXxx(*testing.B)
    //
    // are considered benchmarks, and are executed by the "go test" command when
    // its -bench flag is provided. Benchmarks are run sequentially.
    //
    // For a description of the testing flags, see
    // https://golang.org/cmd/go/#hdr-Testing_flags.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    Gradle initialises the CUnit test registry and executes the tests, utilising some generated CUnit launcher sources. Gradle will expect and call a function with the signature `void gradle_cunit_register()` that you can use to configure the actual CUnit suites and tests to execute.
    
    === Example: Registering CUnit tests
    
    [source.multi-language-sample,c]
    .suite_operators.c
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

        /**
         * Adds a top level block statement.
         */
        public BuildScriptBuilder block(@Nullable String comment, String methodName, Action<? super ScriptBlockBuilder> blockContentBuilder) {
            blockContentBuilder.execute(block.block(comment, methodName));
            return this;
        }
    
        public BuildScriptBuilder javaToolchainFor(JavaLanguageVersion languageVersion) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top