Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 261 for getStep (0.14 sec)

  1. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

                // Either both are non-null, or both are nullable
                return nonNullGetters == nonNullSetters;
            }
    
            private boolean getterAnnotatedWithNullable(JavaMethod getter) {
                return getter.isAnnotatedWith(Nullable.class);
            }
    
            private boolean setterAnnotatedWithNullable(JavaMethod setter) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

        }
    
        def "cannot read property that doesn't have a well formed getter"() {
            when:
            readableProperty(JavaTestSubject, String, property)
    
            then:
            NoSuchPropertyException e = thrown()
            e.message == "Could not find getter method for property '${property}' on class JavaTestSubject."
    
            where:
            property              | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

         * Since Gradle 6, it does not include buildSrc, whereas this scope does.
         *
         * This method is not named as a property getter to avoid getProperties() invoking it.
         *
         * @throws IllegalStateException if called before {@link #setBaseProjectClassLoaderScope(ClassLoaderScope)}
         */
        ClassLoaderScope baseProjectClassLoaderScope();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/get.go

    // may be used to deserialize an options object to pass to the getter.
    type getterFunc func(ctx context.Context, name string, req *http.Request) (runtime.Object, error)
    
    // getResourceHandler is an HTTP handler function for get requests. It delegates to the
    // passed-in getterFunc to perform the actual get.
    func getResourceHandler(scope *RequestScope, getter getterFunc) http.HandlerFunc {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 10:22:16 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ViewBuilder.java

         *
         * When a given method cannot be found on the source object for a view, the mix-in object is searched for a compatible method.
         * For a getter method, the mix-in may also provide a method that takes the view as a parameter.
         *
         * @return this
         */
        ViewBuilder<T> mixInTo(Class<?> targetType, Object mixIn);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/PluginServiceInjectionIntegrationTest.groovy

            failure.assertHasCause("Unable to determine constructor argument #1: missing parameter of type Unknown, or no service of type Unknown")
        }
    
        def "can inject service using getter method"() {
            buildFile """
                class CustomPlugin implements Plugin<Project> {
                    @Inject
                    WorkerExecutor getExecutor() { }
    
                    void apply(Project p) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    func UpdateEtcdDbSize(ep string, size int64) {
    	dbTotalSize.WithLabelValues(ep).Set(float64(size))
    }
    
    // SetStorageMonitorGetter sets monitor getter to allow monitoring etcd stats.
    func SetStorageMonitorGetter(getter func() ([]Monitor, error)) {
    	storageMonitor.setGetter(getter)
    }
    
    // UpdateLeaseObjectCount sets the etcd_lease_object_counts metric.
    func UpdateLeaseObjectCount(count int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/IConventionAware.java

     * <p>Allows default values for the properties of this object to be declared. Most implementations are generated at
     * run-time from existing classes, by a {@link org.gradle.api.internal.Instantiator} implementation.</p>
     *
     * <p>Each getter of an {@code IConventionAware} object should use the mappings to determine the value for the property,
     * when no value has been explicitly set for the property.</p>
     */
    public interface IConventionAware {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

            public Directory call() throws Exception {
                Method getter = GeneratedSubclasses.unpackType(compile).getMethod("getDestinationDir");
                if (getter.getDeclaringClass() == AbstractCompile.class) {
                    // Subclass has not overridden the getter, so ignore
                    return null;
                }
    
                // Subclass has overridden the getter, so call it
    
                if (recursiveCall) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/networkfilter.go

    	includeMx bool,
    ) []*listener.Filter {
    	idleTimeout := destinationRule.GetTrafficPolicy().GetConnectionPool().GetTcp().GetIdleTimeout()
    	if idleTimeout == nil {
    		idleTimeout = parseDuration(lb.node.Metadata.IdleTimeout)
    	}
    	tcpProxy := &tcp.TcpProxy{
    		StatPrefix:                      statPrefix,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top