Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,881 for METHOD (0.15 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/MethodCache.kt

        allMethods().firstAccessibleMatchingMethodOrNull(predicate)
    
    
    internal
    fun Iterable<Method>.firstAccessibleMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        find(predicate)?.apply { isAccessible = true }
    
    
    internal
    fun Class<*>.firstMatchingMethodOrNull(predicate: Method.() -> Boolean): Method? =
        allMethods().find(predicate)
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodRuleDefinition.java

        }
    
        public static <T> MethodRuleDefinition<?, ?> create(Class<T> source, Method method) {
            return innerCreate(source, method);
        }
    
        private static <T, R, S> MethodRuleDefinition<R, S> innerCreate(Class<T> source, Method method) {
            ModelType<R> returnType = ModelType.returnType(method);
            return new DefaultMethodRuleDefinition<T, R, S>(method, ModelType.of(source), returnType);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java

            public RequestDataContext method(final Method method) {
                data.setMethod(method);
                return this;
            }
    
            public RequestDataContext get() {
                return method(Method.GET);
            }
    
            public RequestDataContext head() {
                return method(Method.HEAD);
            }
    
            public RequestDataContext post() {
                return method(Method.POST);
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/go/types/errsupport.go

    	// misspelled     x.Foo   ==    FoO    type X has no field or method Foo, but does have field FoO
    	// misspelled     x.Foo   ==    foo    type X has no field or method Foo, but does have field foo
    	// misspelled     x.Foo   ==    foO    type X has no field or method Foo, but does have field foO
    	//
    	// misspelled     x.foo   ==    Foo    type X has no field or method foo, but does have field Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

    - Method broken3(java.lang.String) is not a valid rule method: A method annotated with @Rules must have at least two parameters
    - Method broken1(java.lang.String, ${RuleSource.name}) is not a valid rule method: The first parameter of a method annotated with @Rules must be a subtype of ${RuleSource.name}
    - Method broken2() is not a valid rule method: A method annotated with @Rules must have at least two parameters"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/api/plugins/BasePluginExtension.java

         */
        @Deprecated
        void setDistsDirName(String distsDirName);
    
        /**
         * This method is only here to maintain compatibility with existing builds.
         *
         * @deprecated Use {@link #getLibsDirectory()}. This method is scheduled for removal in Gradle 9.0.
         */
        @Deprecated
        String getLibsDirName();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/lang/MethodUtilTest.java

            final Method equalsMethod = ClassUtil.getMethod(getClass(), "equals", Object.class);
            assertThat(MethodUtil.isHashCodeMethod(equalsMethod), is(not(true)));
        }
    
        /**
         *
         */
        @Test
        public void testIsToStringMethod() {
            final Method toStringMethod = ClassUtil.getMethod(getClass(), "toString");
            assertThat(MethodUtil.isToStringMethod(toStringMethod), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/functionParamInBinaryModule.txt

        // source: 'main.kt'
        enclosing method MainKt.ArticleScreenContent$default(Ljava/lang/String;Lkotlin/jvm/functions/Function0;ILjava/lang/Object;)V
        public final static field INSTANCE: MainKt$ArticleScreenContent$1
        inner (anonymous) class MainKt$ArticleScreenContent$1
        static method <clinit>(): void
        method <init>(): void
        public synthetic bridge method invoke(): java.lang.Object
        public final method invoke(): void
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 12:26:50 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/net/rpc/debug.go

    	server.serviceMap.Range(func(snamei, svci any) bool {
    		svc := svci.(*service)
    		ds := debugService{svc, snamei.(string), make([]debugMethod, 0, len(svc.method))}
    		for mname, method := range svc.method {
    			ds.Method = append(ds.Method, debugMethod{method, mname})
    		}
    		slices.SortFunc(ds.Method, func(a, b debugMethod) int {
    			return strings.Compare(a.Name, b.Name)
    		})
    		services = append(services, ds)
    		return true
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top