Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 5,212 for METHOD (0.1 sec)

  1. 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)
  2. test/fixedbugs/issue31053.dir/main.go

    	_ = f.Name
    	_ = f.name          // ERROR "f.name undefined .type f1.Foo has no field or method name, but does have Name."
    	_ = f.noSuchPrivate // ERROR "f.noSuchPrivate undefined .type f1.Foo has no field or method noSuchPrivate."
    	_ = f.NoSuchPublic  // ERROR "f.NoSuchPublic undefined .type f1.Foo has no field or method NoSuchPublic."
    	_ = f.foo           // ERROR "f.foo undefined .type f1.Foo has no field or method foo."
    	_ = f.Exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 28 07:44:07 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  3. 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)
  4. api/go1.21.txt

    pkg log/slog, method (Value) Any() interface{} #56345
    pkg log/slog, method (Value) Bool() bool #56345
    pkg log/slog, method (Value) Duration() time.Duration #56345
    pkg log/slog, method (Value) Equal(Value) bool #56345
    pkg log/slog, method (Value) Float64() float64 #56345
    pkg log/slog, method (Value) Group() []Attr #56345
    pkg log/slog, method (Value) Int64() int64 #56345
    pkg log/slog, method (Value) Kind() Kind #56345
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 09:39:17 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/ClassInspector.java

            for (Method method : type.getDeclaredMethods()) {
                classDetails.method(method);
    
                if (Modifier.isPrivate(method.getModifiers()) || Modifier.isStatic(method.getModifiers())) {
                    continue;
                }
    
                PropertyAccessorType accessorType = PropertyAccessorType.of(method);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultModelRuleInvoker.java

    import org.gradle.internal.Factory;
    import org.gradle.model.internal.method.WeaklyTypeReferencingMethod;
    
    import java.lang.reflect.Modifier;
    
    class DefaultModelRuleInvoker<I, R> implements ModelRuleInvoker<R> {
        private final WeaklyTypeReferencingMethod<I, R> method;
        private final Factory<? extends I> factory;
    
        DefaultModelRuleInvoker(WeaklyTypeReferencingMethod<I, R> method, Factory<? extends I> factory) {
            this.method = method;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/tasks/Upload.java

        }
    
        /**
         * Do not use this method, it will always return {@code false}.
         * @deprecated This class is scheduled for removal in a future version, this method <strong>should not be used</strong>.
         */
        @Input
        @Deprecated
        public boolean isUploadDescriptor() {
            return false;
        }
    
        /**
         * Do not use this method, it does nothing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultMethodModelRuleExtractionContext.java

            problems.add(field, problem);
        }
    
        @Override
        public void add(Method method, String problem) {
            problems.add(method, problem);
        }
    
        @Override
        public void add(Method method, String role, String problem) {
            problems.add(method, role, problem);
        }
    
        @Override
        public void add(Constructor<?> constructor, String problem) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top