Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 114 for Executer (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            when:
            conf.runDependencyActions()
    
            then:
            1 * defaultDependencyAction.execute(conf.dependencies)
            1 * mutation.execute(conf.dependencies)
    
            then:
            1 * parentWhenEmptyAction.execute(parent.dependencies)
            1 * parentMutation.execute(conf.dependencies)
            0 * _
        }
    
        def propertyChangeWithNonUnresolvedStateShouldThrowEx() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            unpackedValue == expectedUnpackedValue
            1 * sideEffect1.execute("some value")
            then: // ensure ordering
            1 * sideEffect2.execute("other value")
            0 * _
    
            when:
            unpackedValue = executionTimeValue.toValue().get()
            then:
            unpackedValue == 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
    - 58.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	ctx := setupTestCommon(t, compiler, matcher, false)
    	err := ctx.Plugin.Dispatch(
    		context.Background(),
    		// Object is irrelevant/unchecked for this test. Just test that
    		// the evaluator is executed, and returns a denial
    		attributeRecord(nil, fakeParams, admission.Create),
    		&admission.RuntimeObjectInterfaces{},
    	)
    
    	require.ErrorContains(t, err, "not yet ready to handle request")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top