Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for typefix (0.21 sec)

  1. src/encoding/json/decode_test.go

    	{CaseName: Name(""), in: `{"X": [1,2,3], "Y": 4}`, ptr: new(T), out: T{Y: 4}, err: &UnmarshalTypeError{"array", reflect.TypeFor[string](), 7, "T", "X"}},
    	{CaseName: Name(""), in: `{"X": 23}`, ptr: new(T), out: T{}, err: &UnmarshalTypeError{"number", reflect.TypeFor[string](), 8, "T", "X"}},
    	{CaseName: Name(""), in: `{"x": 1}`, ptr: new(tx), out: tx{}},
    	{CaseName: Name(""), in: `{"x": 1}`, ptr: new(tx), out: tx{}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // When RTTI is available, the function performs a runtime
    // check to enforce this.
    template <class Derived, class Base>
    Derived* CheckedDowncastToActualType(Base* base) {
    #if GTEST_HAS_RTTI
      GTEST_CHECK_(typeid(*base) == typeid(Derived));
      return dynamic_cast<Derived*>(base);  // NOLINT
    #else
      return static_cast<Derived*>(base);  // Poor man's downcast.
    #endif
    }
    
    #if GTEST_HAS_STREAM_REDIRECTION
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    	bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeFor[int]().Bits()-1)))
    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend TestInfo* internal::MakeAndRegisterTestInfo(
          const char* test_case_name,
          const char* name,
          const char* type_param,
          const char* value_param,
          internal::TypeId fixture_class_id,
          Test::SetUpTestCaseFunc set_up_tc,
          Test::TearDownTestCaseFunc tear_down_tc,
          internal::TestFactoryBase* factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      friend TestInfo* internal::MakeAndRegisterTestInfo(
          const char* test_case_name,
          const char* name,
          const char* type_param,
          const char* value_param,
          internal::TypeId fixture_class_id,
          Test::SetUpTestCaseFunc set_up_tc,
          Test::TearDownTestCaseFunc tear_down_tc,
          internal::TestFactoryBase* factory);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. src/html/template/exec_test.go

    // of the max int boundary.
    // We do it this way so the test doesn't depend on ints being 32 bits.
    var (
    	bigInt  = fmt.Sprintf("0x%x", int(1<<uint(reflect.TypeFor[int]().Bits()-1)-1))
    	bigUint = fmt.Sprintf("0x%x", uint(1<<uint(reflect.TypeFor[int]().Bits()-1)))
    )
    
    var execTests = []execTest{
    	// Trivial cases.
    	{"empty", "", "", nil, true},
    	{"text", "some text", "some text", nil, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	o.X = typ
    	return o
    }
    
    // typeOrNil is like type_ but it returns nil if there was no type
    // instead of reporting an error.
    //
    //	Type     = TypeName | TypeLit | "(" Type ")" .
    //	TypeName = identifier | QualifiedIdent .
    //	TypeLit  = ArrayType | StructType | PointerType | FunctionType | InterfaceType |
    //		      SliceType | MapType | Channel_Type .
    func (p *parser) typeOrNil() Expr {
    	if trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/reflect/type.go

    		tt := (*structType)(unsafe.Pointer(t))
    		for i := range tt.Fields {
    			f := &tt.Fields[i]
    			addTypeBits(bv, offset+f.Offset, f.Typ)
    		}
    	}
    }
    
    // TypeFor returns the [Type] that represents the type argument T.
    func TypeFor[T any]() Type {
    	var v T
    	if t := TypeOf(v); t != nil {
    		return t // optimize for T being a non-interface kind
    	}
    	return TypeOf((*T)(nil)).Elem() // only for an interface kind
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	"sZ": {"sizeof...", 1, precUnary},
    	"sc": {"static_cast", 2, precPostfix},
    	"ss": {"<=>", 2, precSpaceship},
    	"st": {"sizeof ", 1, precUnary},
    	"sz": {"sizeof ", 1, precUnary},
    	"te": {"typeid ", 1, precPostfix},
    	"ti": {"typeid ", 1, precPostfix},
    	"tr": {"throw", 0, precPrimary},
    	"tw": {"throw ", 1, precUnary},
    }
    
    // operatorName parses:
    //
    //	operator_name ::= many different two character encodings.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. src/main/webapp/js/jquery-3.6.3.min.js

    op")))}return T},getJSON:function(e,t,n){return E.get(e,t,n,"json")},getScript:function(e,t){return E.get(e,void 0,t,"script")}}),E.each(["get","post"],function(e,i){E[i]=function(e,t,n,r){return m(t)&&(r=r||n,n=t,t=void 0),E.ajax(E.extend({url:e,type:i,dataType:r,data:t,success:n},E.isPlainObject(e)&&e))}}),E.ajaxPrefilter(function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")}),E._evalUrl=function(e,t,n){return E.ajax({url:e,type:"GET",dataType:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
Back to top