Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for argTypes (0.33 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. 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)
  6. 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)
  7. tensorflow/c/experimental/ops/gen/model/arg_type.h

    //
    // This represents the type information with OpDef::ArgDef and any type-related
    // context.
    class ArgType {
     public:
      ArgType() = default;
      ArgType(const ArgType& other) = default;
      static ArgType CreateInput(const OpDef::ArgDef& arg_def);
      static ArgType CreateInputRef(const OpDef::ArgDef& arg_def);
      static ArgType CreateOutput(const OpDef::ArgDef& arg_def);
    
      const tensorflow::DataType data_type() const { return data_type_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/ops/gen/model/arg_type.cc

    namespace tensorflow {
    namespace generator {
    
    ArgType ArgType::CreateInput(const OpDef::ArgDef& arg_def) {
      return ArgType(arg_def, kInput);
    }
    
    ArgType ArgType::CreateInputRef(const OpDef::ArgDef& arg_def) {
      return ArgType(arg_def, kInputRef);
    }
    
    ArgType ArgType::CreateOutput(const OpDef::ArgDef& arg_def) {
      return ArgType(arg_def, kOutput);
    }
    
    ArgType::ArgType(const OpDef::ArgDef& arg_def, Kind kind)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/ops/gen/model/arg_spec.cc

    namespace generator {
    
    ArgSpec::ArgSpec(const OpDef::ArgDef& arg_def, ArgType arg_type, int position)
        : name_(arg_def.name()),
          description_(arg_def.description()),
          arg_type_(arg_type),
          position_(position) {}
    
    ArgSpec ArgSpec::CreateInput(const OpDef::ArgDef& arg_def, int position) {
      if (arg_def.is_ref()) {
        return ArgSpec(arg_def, ArgType::CreateInputRef(arg_def), position);
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 15 18:23:40 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/decode.go

    		off := a.BitFields.ParseSigned(i) << a.Shift
    		neg := int64(-1) << (int(a.Shift) + a.BitFields.NumBits())
    		return Offset(neg | off)
    	}
    }
    
    type ArgType int8
    
    const (
    	TypeUnknown      ArgType = iota
    	TypePCRel                // PC-relative address
    	TypeLabel                // absolute address
    	TypeReg                  // integer register
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top