Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 987 for typeOf (0.5 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/ProjectSchemaTest.kt

                    equalTo(accessible(type))
                )
            }
        }
    
        @Test
        fun `private type is represented as Inaccessible because NonPublic`() {
    
            val typeString = "non.visible.Type"
    
            val classPath = classPathWithPrivateType(typeString)
            classLoaderFor(classPath).useToRun {
                val type = schemaTypeFor(typeString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. cmd/server-main_test.go

    	if err != nil {
    		t.Fatal("Unexpected object layer initialization error", err)
    	}
    
    	_, ok := obj.(*erasureServerPools)
    	if !ok {
    		t.Fatal("Unexpected object layer detected", reflect.TypeOf(obj))
    	}
    
    	// Tests for Erasure object layer initialization.
    
    	// Create temporary backend for the test server.
    	nDisks = 16
    	disks, err = getRandomDisks(nDisks)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Dec 07 09:33:56 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue24161res/restype.go

    package issue24161res
    
    /*
    #cgo LDFLAGS: -framework CoreFoundation
    #include <CoreFoundation/CoreFoundation.h>
    */
    import "C"
    import (
    	"reflect"
    	"testing"
    )
    
    func Test(t *testing.T) {
    	if k := reflect.TypeOf(C.CFArrayCreate(0, nil, 0, nil)).Kind(); k != reflect.Uintptr {
    		t.Fatalf("bad kind %s\n", k)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 486 bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/GenerateVersionCatalogAccessors.kt

            )
        }
    
    
    private
    fun pluginsBlockFactorySourceNameFor(publicType: TypeOf<*>): String =
        "${publicType.simpleName}$IN_PLUGINS_BLOCK_FACTORIES_SUFFIX"
    
    
    private
    fun pluginsBlockFactoryInternalNameFor(publicType: TypeOf<*>): InternalName =
        InternalName.from("${publicType.concreteClass.internalName.value}$IN_PLUGINS_BLOCK_FACTORIES_SUFFIX")
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:28 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/lang/da.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
    - 2.4K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/form-validator/lang/pl.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
    - 2.9K bytes
    - Viewed (0)
  7. cmd/postpolicyform.go

    	for _, val := range rawPolicy.Conditions {
    		switch condt := val.(type) {
    		case map[string]interface{}: // Handle key:value map types.
    			for k, v := range condt {
    				if !isString(v) { // Pre-check value type.
    					// All values must be of type string.
    					return parsedPolicy, fmt.Errorf("Unknown type %s of conditional field value %s found in POST policy form", reflect.TypeOf(condt).String(), condt)
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 10:52:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. operator/pkg/tpath/struct.go

    func Set(val, out any) error {
    	// Special case: map out type must be set through map ptr.
    	if util.IsMap(val) && util.IsMapPtr(out) {
    		reflect.ValueOf(out).Elem().Set(reflect.ValueOf(val))
    		return nil
    	}
    	if util.IsSlice(val) && util.IsSlicePtr(out) {
    		reflect.ValueOf(out).Elem().Set(reflect.ValueOf(val))
    		return nil
    	}
    
    	if reflect.TypeOf(val) != reflect.TypeOf(out) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  9. src/cmd/gofmt/rewrite.go

    	identType     = reflect.TypeOf((*ast.Ident)(nil))
    	objectPtrType = reflect.TypeOf((*ast.Object)(nil))
    	positionType  = reflect.TypeOf(token.NoPos)
    	callExprType  = reflect.TypeOf((*ast.CallExpr)(nil))
    	scopePtrType  = reflect.TypeOf((*ast.Scope)(nil))
    )
    
    // apply replaces each AST field x in val with f(x), returning val.
    // To avoid extra conversions, f operates on the reflect.Value form.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  10. test/typeparam/issue48645a.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type Stream[T any] struct {
    }
    
    func (s Stream[T]) DropWhile() Stream[T] {
    	return Pipe[T, T](s)
    }
    
    func Pipe[T, R any](s Stream[T]) Stream[R] {
    	it := func(fn func(R) bool) {
    	}
    	fmt.Println(reflect.TypeOf(it).String())
    	return Stream[R]{}
    }
    
    func main() {
    	s := Stream[int]{}
    	s = s.DropWhile()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 510 bytes
    - Viewed (0)
Back to top