Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 207 for greater (0.24 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            Task finalizer = createTask("finalizer")
            Task finalizerDep = task("finalizerDep", type: Async)
            Task a = task("a", type: Async, finalizedBy: [finalizer])
            // Note: this task must be "ordered" greater than the finalizer to trigger the issue
            Task b = task("zz", type: Async, dependsOn: [finalizerDep])
            relationships(finalizer, dependsOn: [finalizerDep, b])
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    . Create typed properties (via getter methods) for each of your task inputs and outputs
    . Add the appropriate annotation to each of those properties
    
    NOTE: Annotations must be placed on getters or on Groovy properties. Annotations placed on setters, or on a Java field without a corresponding annotated getter, are ignored.
    
    Gradle supports four main categories of inputs and outputs:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    	ThisUpdate time.Time
    	// NextUpdate is used to populate the nextUpdate field in the CRL, which
    	// indicates the date by which the next CRL will be issued. NextUpdate
    	// must be greater than ThisUpdate.
    	NextUpdate time.Time
    
    	// Extensions contains raw X.509 extensions. When creating a CRL,
    	// the Extensions field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    func getCostErrorMessage(costName string, expressionCost, costLimit uint64) string {
    	exceedFactor := float64(expressionCost) / float64(costLimit)
    	var factor string
    	if exceedFactor > 100.0 {
    		// if exceedFactor is greater than 2 orders of magnitude, the rule is likely O(n^2) or worse
    		// and will probably never validate without some set limits
    		// also in such cases the cost estimation is generally large enough to not add any value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    			knownTypes:      sets.NewString(string("Webhook")),
    			repeatableTypes: sets.NewString(string("Webhook")),
    		},
    		{
    			name: "timeout shouldn't be greater than 30seconds",
    			configuration: api.AuthorizationConfiguration{
    				Authorizers: []api.AuthorizerConfiguration{
    					{
    						Type: "Webhook",
    						Name: "default",
    						Webhook: &api.WebhookConfiguration{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    		print("system huge page size (", physHugePageSize, ") must be a power of 2\n")
    		throw("bad system huge page size")
    	}
    	if physHugePageSize > maxPhysHugePageSize {
    		// physHugePageSize is greater than the maximum supported huge page size.
    		// Don't throw here, like in the other cases, since a system configured
    		// in this way isn't wrong, we just don't have the code to support them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/DefaultModelRegistryTest.groovy

      - other-1 (created by: other-1 creator)
      - other-2 (created by: other-2 creator)"""
        }
    
        def "cannot register already known element"() {
            given:
            registry.register("foo") { it.descriptor("create foo as String").unmanaged("value") }
    
            when:
            registry.register("foo") { it.descriptor("create foo as Integer").unmanaged(12.toInteger()) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 56K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	}
    
    	// what verbs are supported by the storage, used to know what verbs we support per path
    	creater, isCreater := storage.(rest.Creater)
    	namedCreater, isNamedCreater := storage.(rest.NamedCreater)
    	lister, isLister := storage.(rest.Lister)
    	getter, isGetter := storage.(rest.Getter)
    	getterWithOptions, isGetterWithOptions := storage.(rest.GetterWithOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	created, err := t.storage.(rest.Creater).Create(ctx, valid.DeepCopyObject(), rest.ValidateAllObjectFunc, &opts)
    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    	defer t.delete(ctx, created)
    	createdObjectMeta := t.getObjectMetaOrFail(created)
    	if createdObjectMeta.GetNamespace() != metav1.NamespaceNone {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            failure.assertHasCause("Failed to create service 'counter1'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
            failure.assertHasCause("broken")
            failure.assertHasDescription("Execution failed for task ':second'.")
            failure.assertHasCause("Failed to create service 'counter2'.")
            failure.assertHasCause("Could not create an instance of type CountingService.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
Back to top