Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 240 for typeOff (0.24 sec)

  1. src/testing/fuzz.go

    	reflect.TypeOf(([]byte)("")):  true,
    	reflect.TypeOf((string)("")):  true,
    	reflect.TypeOf((bool)(false)): true,
    	reflect.TypeOf((byte)(0)):     true,
    	reflect.TypeOf((rune)(0)):     true,
    	reflect.TypeOf((float32)(0)):  true,
    	reflect.TypeOf((float64)(0)):  true,
    	reflect.TypeOf((int)(0)):      true,
    	reflect.TypeOf((int8)(0)):     true,
    	reflect.TypeOf((int16)(0)):    true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

      typedef T3 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 4, GTEST_10_TUPLE_(T) > {
      typedef T4 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 5, GTEST_10_TUPLE_(T) > {
      typedef T5 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    struct TupleElement<true, 6, GTEST_10_TUPLE_(T) > {
      typedef T6 type;
    };
    
    template <GTEST_10_TYPENAMES_(T)>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. test/recover.go

    }
    
    func test14reflect2() {
    	f := reflect.TypeOf(T6{}).Method(0).Func.Interface().(func(T6))
    	defer f(T6{})
    	panic(14)
    }
    
    // function created by reflect.MakeFunc
    
    func reflectFunc(args []reflect.Value) (results []reflect.Value) {
    	mustRecoverBody(doubleRecover(), recover(), recover(), 15)
    	return nil
    }
    
    func test15() {
    	f := reflect.MakeFunc(reflect.TypeOf((func())(nil)), reflectFunc).Interface().(func())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/api/meta/help.go

    			}
    		}
    	}
    	return list, nil
    }
    
    var (
    	// objectSliceType is the type of a slice of Objects
    	objectSliceType        = reflect.TypeOf([]runtime.Object{})
    	objectType             = reflect.TypeOf((*runtime.Object)(nil)).Elem()
    	rawExtensionObjectType = reflect.TypeOf(runtime.RawExtension{})
    )
    
    // LenList returns the length of this list or 0 if it is not a list.
    func LenList(list runtime.Object) int {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 16:25:43 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_block_test.go

    	_, err = csiMapper.SetUpDevice()
    	if err == nil {
    		t.Errorf("test should fail, but no error occurred")
    	} else if reflect.TypeOf(transientError) != reflect.TypeOf(err) {
    		t.Fatalf("expected exitError type: %v got: %v (%v)", reflect.TypeOf(transientError), reflect.TypeOf(err), err)
    	}
    }
    
    func TestBlockMapperMapPodDevice(t *testing.T) {
    	plug, tmpDir := newTestPlugin(t, nil)
    	defer os.RemoveAll(tmpDir)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/value_test.go

    	lv := NewListValue()
    	none, err := lv.ConvertToNative(reflect.TypeOf([]interface{}{}))
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !reflect.DeepEqual(none, []interface{}{}) {
    		t.Errorf("got %v, wanted empty list", none)
    	}
    	lv.Append(testValue(t, 1, "first"))
    	one, err := lv.ConvertToNative(reflect.TypeOf([]string{}))
    	oneList := one.([]string)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/plugins/form-validator/jquery.form-validator.min.js

     *
     *  @version 2.3.77
     *  @website http://formvalidator.net/
     *  @author Victor Jonsson, http://victorjonsson.se
     *  @license MIT
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 32.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

                    else -> false
                }
    
            fun createFor(typeRef: FirResolvedTypeRef): TypeQualifier? {
                if (!typeRef.isPresentInSource) return null
    
                val wholeClassId = typeRef.resolvedClassId ?: return null
                val psi = typeRef.psi as? KtTypeReference ?: return null
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    	}
    	key := key{pkg: pkg, t: reflect.TypeOf(ptr)}
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if v, ok := s.m[key]; ok {
    		reflect.ValueOf(ptr).Elem().Set(reflect.ValueOf(v).Elem())
    		return true
    	}
    	return false
    }
    
    // ExportPackageFact implements analysis.Pass.ExportPackageFact.
    func (s *Set) ExportPackageFact(fact analysis.Fact) {
    	key := key{pkg: s.pkg, t: reflect.TypeOf(fact)}
    	s.mu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows_test.go

    			cArgs[i] = fmt.Sprintf("(uint8Pair_t){%d,1}", i)
    		} else {
    			cArgs[i] = fmt.Sprintf("%d", i+1)
    		}
    	}
    	fmt.Fprintf(w, `
    typedef uintptr_t %s (*%s)(%s);
    uintptr_t %s(%s f) {
    	return f(%s);
    }
    	`, attr, typename, strings.Join(cTypes, ","), funcname, typename, strings.Join(cArgs, ","))
    }
    
    func (f cbFunc) testOne(t *testing.T, dll *syscall.DLL, cdecl bool, cb uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
Back to top