Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for vartypes (0.11 sec)

  1. src/cmd/compile/internal/ssagen/phi.go

    				}
    			}
    
    			if _, ok := s.varnum[var_]; ok {
    				continue
    			}
    			s.varnum[var_] = int32(len(vartypes))
    			if debugPhi {
    				fmt.Printf("var%d = %v\n", len(vartypes), var_)
    			}
    			vars = append(vars, var_)
    			vartypes = append(vartypes, v.Type)
    		}
    	}
    
    	if len(vartypes) == 0 {
    		return
    	}
    
    	// Find all definitions of the variables we need to process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  2. src/go/types/assignments.go

    func operandTypes(list []*operand) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // varTypes returns the list of types for the given variables.
    func varTypes(list []*Var) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // typesSummary returns a string of the form "(t1, t2, ...)" where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/assignments.go

    func operandTypes(list []*operand) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // varTypes returns the list of types for the given variables.
    func varTypes(list []*Var) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // typesSummary returns a string of the form "(t1, t2, ...)" where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/call.go

    		err := check.newError(WrongArgCount)
    		err.addf(at, "%s arguments in call to %s", qualifier, call.Fun)
    		err.addf(nopos, "have %s", check.typesSummary(operandTypes(args), false))
    		err.addf(nopos, "want %s", check.typesSummary(varTypes(params), sig.variadic))
    		err.report()
    		return
    	}
    
    	// collect type parameters of callee and generic function arguments
    	var tparams []*TypeParam
    
    	// collect type parameters of callee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  5. src/go/types/call.go

    		err := check.newError(WrongArgCount)
    		err.addf(at, "%s arguments in call to %s", qualifier, call.Fun)
    		err.addf(noposn, "have %s", check.typesSummary(operandTypes(args), false))
    		err.addf(noposn, "want %s", check.typesSummary(varTypes(params), sig.variadic))
    		err.report()
    		return
    	}
    
    	// collect type parameters of callee and generic function arguments
    	var tparams []*TypeParam
    
    	// collect type parameters of callee
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(types).contains(TypeToken.of(Object.class));
        assertThat(types.rawTypes()).contains(Object.class);
        assertThat(types.interfaces()).isEmpty();
        assertThat(types.interfaces().rawTypes()).isEmpty();
        assertThat(types.classes()).contains(TypeToken.of(Object.class));
        assertThat(types.classes().rawTypes()).contains(Object.class);
      }
    
      public void testGetTypes_fromInterface() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(types).contains(TypeToken.of(Object.class));
        assertThat(types.rawTypes()).contains(Object.class);
        assertThat(types.interfaces()).isEmpty();
        assertThat(types.interfaces().rawTypes()).isEmpty();
        assertThat(types.classes()).contains(TypeToken.of(Object.class));
        assertThat(types.classes().rawTypes()).contains(Object.class);
      }
    
      public void testGetTypes_fromInterface() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        return sorted(list(tfr_funcs))
    
    
    _PY_TYPE_TO_TFR = {
        bool: TFRTypes.I1,
        int: TFRTypes.I64,
        float: TFRTypes.F32,
    }
    
    _TF_DTYPE_TO_TFR = {
        'bool': TFRTypes.I1,
        'int64': TFRTypes.I64,
        'int32': TFRTypes.I32,
        'int16': TFRTypes.I16,
        'int8': TFRTypes.I8,
        'float32': TFRTypes.F32,
    }
    
    _AG_FIXED_RETURN_TYPE = {
        'for_stmt': type(None),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top