Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for argTypes (0.15 sec)

  1. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

        private final Class<?>[] argTypes;
    
        /**
         * {@link NoSuchConstructorRuntimeException}を作成します。
         *
         * @param targetClass
         *            ターゲットクラス
         * @param argTypes
         *            引数型の並び
         * @param cause
         *            原因となった例外
         */
        public NoSuchConstructorRuntimeException(final Class<?> targetClass, final Class<?>[] argTypes, final Throwable cause) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

                final Throwable cause) {
            super("ECL0057", asArray(targetClass.getName(), MethodUtil.getSignature(methodName, argTypes)), cause);
            this.targetClass = targetClass;
            this.methodName = methodName;
            this.argTypes = argTypes;
        }
    
        /**
         * ターゲットクラスを返します。
         *
         * @return ターゲットクラス
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/internal/trace/event/event.go

    	// with. If Experiment is not NoExperiment, then the event is experimental
    	// and will be exposed as an EventExperiment.
    	Experiment Experiment
    }
    
    // ArgTypes is a list of valid argument types for use in Args.
    //
    // See the documentation of Args for more details.
    var ArgTypes = [...]string{
    	"seq",     // sequence number
    	"pstatus", // P status
    	"gstatus", // G status
    	"g",       // trace.GoID
    	"m",       // trace.ThreadID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTestSupport.groovy

            try {
                c.getDeclaredMethod(name, argTypes)
            } catch (NoSuchMethodException ex) {
                return
            }
            throw new AssertionError("Should not have found method $name(${Arrays.toString(argTypes)}) on class $c")
        }
    
        protected static Method hasMethod(Class c, String name, Class... argTypes) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ClassUtil.java

                throws NoSuchConstructorRuntimeException {
            assertArgumentNotNull("clazz", clazz);
    
            try {
                return clazz.getConstructor(argTypes);
            } catch (final NoSuchMethodException e) {
                throw new NoSuchConstructorRuntimeException(clazz, argTypes, e);
            }
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/DirectInstantiator.java

        }
    
        private DirectInstantiator() {
        }
    
        @Override
        public <T> T newInstance(Class<? extends T> type, Object... params) {
            try {
                Class<?>[] argTypes = wrapArgs(params);
                Constructor<?> match = null;
                while (match == null) {
                    // we need to wrap this into a loop, because there's always a risk
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/lang/MethodUtil.java

         * @param argTypes
         *            引数型のな並び
         * @return シグニチャの文字列表現
         */
        public static String getSignature(final String methodName, final Class<?>... argTypes) {
            assertArgumentNotEmpty("methodName", methodName);
    
            final StringBuilder buf = new StringBuilder(100);
            buf.append(methodName).append("(");
            if (argTypes != null && argTypes.length > 0) {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptingMetaClass.java

        @Override
        public MetaMethod getStaticMetaMethod(String name, Object[] argTypes) {
            return adaptee.getStaticMetaMethod(name, argTypes);
        }
    
        /**
         * This is overridden just to make the compiler happy about the unchecked conversions.
         */
        @Override
        public List<MetaMethod> respondsTo(Object obj, String name, Object[] argTypes) {
            return Cast.uncheckedNonnullCast(super.respondsTo(obj, name, argTypes));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/format.go

    	return func(o *decls.OverloadDecl) (*decls.OverloadDecl, error) {
    		wrapped, err := decls.FunctionBinding(func(values ...ref.Val) ref.Val { return binding() })(o)
    		if err != nil {
    			return nil, err
    		}
    		if len(wrapped.ArgTypes()) != 0 {
    			return nil, fmt.Errorf("function binding must have 0 arguments")
    		}
    		return o, nil
    	}
    }
    
    func (*format) CompileOptions() []cel.EnvOption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/writebarrier.go

    		}
    		args = args[:0]
    	}
    
    	args = append(args, mem)
    
    	// issue call
    	argTypes := make([]*types.Type, nargs, 3) // at most 3 args; allows stack allocation
    	for i := 0; i < nargs; i++ {
    		argTypes[i] = typ
    	}
    	call := b.NewValue0A(pos, OpStaticCall, types.TypeResultMem, StaticAuxCall(fn, b.Func.ABIDefault.ABIAnalyzeTypes(argTypes, nil)))
    	call.AddArgs(args...)
    	call.AuxInt = int64(nargs) * typ.Size()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
Back to top