Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for _typ (0.08 sec)

  1. src/cmd/compile/internal/types2/builtins.go

    		// both argument types must be identical
    		if !Identical(x.typ, y.typ) {
    			check.errorf(x, InvalidComplex, invalidOp+"%v (mismatched types %s and %s)", call, x.typ, y.typ)
    			return
    		}
    
    		// the argument types must be of floating-point type
    		// (applyTypeFunc never calls f with a type parameter)
    		f := func(typ Type) Type {
    			assert(!isTypeParam(typ))
    			if t, _ := under(typ).(*Basic); t != nil {
    				switch t.kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/runtime/chan.go

    	dataqsiz uint           // size of the circular queue
    	buf      unsafe.Pointer // points to an array of dataqsiz elements
    	elemsize uint16
    	closed   uint32
    	timer    *timer // timer feeding this chan
    	elemtype *_type // element type
    	sendx    uint   // send index
    	recvx    uint   // receive index
    	recvq    waitq  // list of recv waiters
    	sendq    waitq  // list of send waiters
    
    	// lock protects all fields in hchan, as well as several
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  3. src/text/template/exec.go

    		argv[i] = s.evalArg(dot, typ.In(i), args[i])
    	}
    	// Now the ... args.
    	if typ.IsVariadic() {
    		argType := typ.In(typ.NumIn() - 1).Elem() // Argument is a slice.
    		for ; i < len(args); i++ {
    			argv[i] = s.evalArg(dot, argType, args[i])
    		}
    	}
    	// Add final value if necessary.
    	if !isMissing(final) {
    		t := typ.In(typ.NumIn() - 1)
    		if typ.IsVariadic() {
    			if numIn-1 < numFixed {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/net/lookup_test.go

    		"google.com.", "google.com.",
    	},
    	{
    		"ldap", "tcp", "google.com.",
    		"google.com.", "google.com.",
    	},
    
    	// non-standard back door
    	{
    		"", "", "_ldap._tcp.google.com",
    		"google.com.", "google.com.",
    	},
    	{
    		"", "", "_ldap._tcp.google.com.",
    		"google.com.", "google.com.",
    	},
    }
    
    var backoffDuration = [...]time.Duration{time.Second, 5 * time.Second, 30 * time.Second}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  5. docs/pt/docs/features.md

    * Cliente de testes construído sobre HTTPX.
    * Respostas em **CORS**, GZip, Static Files, Streaming.
    * Suporte a **Session e Cookie**.
    * 100% de cobertura de testes.
    * 100% do código utilizando _type annotations_.
    
    ## Recursos do Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. src/runtime/symtab.go

    }
    
    // pinnedTypemaps are the map[typeOff]*_type from the moduledata objects.
    //
    // These typemap objects are allocated at run time on the heap, but the
    // only direct reference to them is in the moduledata, created by the
    // linker and marked SNOPTRDATA so it is ignored by the GC.
    //
    // To make sure the map isn't collected, we keep a second reference here.
    var pinnedTypemaps []map[typeOff]*_type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. src/go/doc/reader.go

    		return nil // no type docs for anonymous types
    	}
    	if typ, found := r.types[name]; found {
    		return typ
    	}
    	// type not found - add one without declaration
    	typ := &namedType{
    		name:     name,
    		embedded: make(embeddedSet),
    		funcs:    make(methodSet),
    		methods:  make(methodSet),
    	}
    	r.types[name] = typ
    	return typ
    }
    
    // recordAnonymousField registers fieldType as the type of an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/runtime/os_windows.go

    		} else {
    			h = _INVALID_HANDLE_VALUE
    			timeout = uintptr(us) / 1000 // ms units
    		}
    		stdcall2(_WaitForSingleObject, h, timeout)
    	})
    }
    
    func ctrlHandler(_type uint32) uintptr {
    	var s uint32
    
    	switch _type {
    	case _CTRL_C_EVENT, _CTRL_BREAK_EVENT:
    		s = _SIGINT
    	case _CTRL_CLOSE_EVENT, _CTRL_LOGOFF_EVENT, _CTRL_SHUTDOWN_EVENT:
    		s = _SIGTERM
    	default:
    		return 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                        implementationClassName.simpleName() :
                        implementationClassName.canonicalName();
                    String fullFieldName = camelToKebabCase(fieldTypeName).replace("-", "_").toUpperCase(Locale.US) + "_TYPE";
                    return FieldSpec.builder(String.class, fullFieldName, Modifier.PRIVATE, Modifier.STATIC, Modifier.FINAL)
                        .initializer("$S", implementationClassName.canonicalName().replace(".", "/"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		runtime.GC()
    	}
    	ftyp := ctxt.ftyp
    	f := ctxt.fn
    
    	_, _, abid := funcLayout(ftyp, nil)
    
    	// Copy arguments into Values.
    	ptr := frame
    	in := make([]Value, 0, int(ftyp.InCount))
    	for i, typ := range ftyp.InSlice() {
    		if typ.Size() == 0 {
    			in = append(in, Zero(toRType(typ)))
    			continue
    		}
    		v := Value{typ, nil, flag(typ.Kind())}
    		steps := abid.call.stepsForValue(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top