Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 123 for better (0.45 sec)

  1. src/cmd/internal/obj/mips/asm0.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    	typ = Unalias(typ)
    	if tpar, _ := typ.(*TypeParam); tpar != nil {
    		return tpar.underIs(f)
    	}
    	return f(under(typ))
    }
    
    // The unary expression e may be nil. It's passed in for better error messages only.
    func (check *Checker) unary(x *operand, e *ast.UnaryExpr) {
    	check.expr(nil, x, e.X)
    	if x.mode == invalid {
    		return
    	}
    
    	op := e.Op
    	switch op {
    	case token.AND:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. src/go/printer/testdata/parser.go

    	var list []*ast.Field
    	for p.tok == token.IDENT || p.tok == token.MUL || p.tok == token.LPAREN {
    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	// TODO(gri): store struct scope in AST
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    	// a type (e.g. "go:info.uintptr") to the type symbol itself
    	// ("type:uintptr").
    	// FIXME: try converting this map (and the next one) to a single
    	// array indexed by loader.Sym -- this may perform better.
    	rtmap map[loader.Sym]loader.Sym
    
    	// This maps Go type symbol (e.g. "type:XXX") to loader symbol for
    	// the typedef DIE for that type (e.g. "go:info.XXX..def")
    	tdmap map[loader.Sym]loader.Sym
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/asm.go

    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    It works for properties that are publicly seen as `final` (without a setter) and have type `Property` or `ConfigurableFileCollection`.
    Since properties have to be `final`, our general recommendation is not to implement custom setters for properties with lazy types and, if possible, implement such properties via an abstract getter.
    
    Using the `=` operator is the preferred way to call `set()` in the Kotlin DSL.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			if class.StructuredParameters != nil && *class.StructuredParameters {
    				s.informationsForClaim[index].structuredParameters = true
    
    				// Allocation in flight? Better wait for that
    				// to finish, see inFlightAllocations
    				// documentation for details.
    				if _, found := pl.inFlightAllocations.Load(claim.UID); found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        interface to track metrics and monitor HTTP requests' size and duration.
     *  New: `okhttp-dnsoverhttps` is an experimental API for doing DNS queries over HTTPS. Using HTTPS
        for DNS offers better security and potentially better performance. This feature is a preview:
        the API is subject to change.
     *  New: `okhttp-sse` is an early preview of Server-Sent Events (SSE). This feature is incomplete
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. src/runtime/mprof.go

    	if raceenabled {
    		raceacquire(unsafe.Pointer(&labelSync))
    	}
    
    	if n != int(endOffset) {
    		// It's a big surprise that the number of goroutines changed while we
    		// were collecting the profile. But probably better to return a
    		// truncated profile than to crash the whole process.
    		//
    		// For instance, needm moves a goroutine out of the _Gdead state and so
    		// might be able to change the goroutine count without interacting with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    				for _, e := range s.endRegs[b.Preds[0].b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    					}
    				}
    			} else {
    				for _, e := range s.startRegs[b.ID] {
    					if e.v == v {
    						// Found a better spot for the spill.
    						best = b
    						bestArg = e.c
    						bestDepth = depth
    						break
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top