Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 272 for registerKey (0.33 sec)

  1. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
        ProjectEvaluationListener isolateFor(Gradle owner);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
            exception.message.contains("The service '${BuildTreeScopedService.name}' declares service scope 'BuildTree' but is registered in the 'Build' scope. Either update the '@ServiceScope()' annotation on '${BuildTreeScopedService.simpleName}' to include the 'Build' scope or move the service registration to one of the declared scopes.")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			},
    			maxSeats:                  10,
    			initialSeatsExpected:      1,
    			finalSeatsExpected:        0,
    			additionalLatencyExpected: 0,
    		},
    		{
    			name:       "request verb is create, watches registered",
    			requestURI: "http://server/apis/foo.bar/v1/foos",
    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "create",
    				APIGroup: "foo.bar",
    				Resource: "foos",
    			},
    			watchCount:                29,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

            failure.assertHasCause("Type 'org.gradle.test.SoftwareTypeImplPlugin' is registered as a software type plugin but does not expose a software type.")
        }
    
        def 'sensible error when a software type plugin is registered that exposes multiple software types'() {
            given:
            withSoftwareTypePluginThatExposesMultipleSoftwareTypes().prepareToExecute()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/admission.go

    		errs = append(errs, fmt.Errorf("plugins %v in RecommendedPluginOrder are not registered",
    			recommendPlugins.Difference(intersections).List()))
    	}
    	if !intersections.Equal(registeredPlugins) {
    		// Developer error, this should never run in.
    		errs = append(errs, fmt.Errorf("plugins %v registered are not in RecommendedPluginOrder",
    			registeredPlugins.Difference(intersections).List()))
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 12 08:49:42 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/event/DefaultListenerManagerInServiceRegistryTest.groovy

            then:
            0 * _
    
            when:
            broadcast.something("12")
    
            then:
            1 * listener.something("12")
            0 * _
        }
    
        def "creates stateful listener registered after broadcaster is created"() {
            def created = Mock(Runnable)
            def listener = Mock(TestListener)
    
            when:
            def broadcast = listenerManager.getBroadcaster(TestListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/plugins/SoftwareTypeRegistrationPluginTarget.java

                        .contextualLabel("is registered as a software type plugin but does not expose a software type")
                        .severity(Severity.ERROR)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. internal/config/subnet/config.go

    	// Transport configured with proxy_url if set optionally.
    	transport http.RoundTripper
    
    	// The subnet base URL
    	BaseURL string
    }
    
    var configLock sync.RWMutex
    
    // Registered indicates if cluster is registered or not
    func (c *Config) Registered() bool {
    	configLock.RLock()
    	defer configLock.RUnlock()
    
    	return len(c.APIKey) > 0
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionFailureDescriberRegistry.java

            return registry;
        }
    
        /**
         * Returns the list of {@link ResolutionFailureDescriber}s registered for the given {@link ResolutionFailure} type.
         *
         * @param failureType The type of failure to describe
         * @param <FAILURE> The type of failure to describe
         * @return The list of describers registered for the given failure type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:29:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "${MapProperty.name}<String, Number>" | "objects.mapProperty(String, Number); v.set([a: 12])" | "objects.mapProperty(String, Number); v.set([a: 10])"        | null
        }
    
        def "null input properties registered via TaskInputs.property are not allowed"() {
            expectReindentedValidationMessage()
            buildFile << """
                task test {
                    inputs.property("input", { null })
                    doLast {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top