Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for Ordinary (0.15 sec)

  1. src/go/types/resolver.go

    		}
    		imp = NewPackage("C", "C")
    		imp.fake = true // package scope is not populated
    		imp.cgo = check.conf.go115UsesCgo
    	} else {
    		// ordinary import
    		var err error
    		if importer := check.conf.Importer; importer == nil {
    			err = fmt.Errorf("Config.Importer not installed")
    		} else if importerFrom, ok := importer.(ImporterFrom); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  2. src/go/doc/reader.go

    		}
    		// If there is exactly one result type,
    		// associate the function with that type.
    		if numResultTypes == 1 {
    			typ.funcs.set(fun, r.mode&PreserveAST != 0)
    			return
    		}
    	}
    
    	// just an ordinary function
    	r.funcs.set(fun, r.mode&PreserveAST != 0)
    }
    
    // lookupTypeParam searches for type parameters named name within the tparams
    // field list, returning the relevant identifier if found, or nil if not.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. src/go/types/builtins.go

    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    	// For built-ins with special argument handling (make, new, etc.),
    	// evaluation is done by the respective built-in code.
    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/builtins.go

    	//       all arguments.
    	if id == _Len || id == _Cap {
    		defer func(b bool) {
    			check.hasCallOrRecv = b
    		}(check.hasCallOrRecv)
    		check.hasCallOrRecv = false
    	}
    
    	// Evaluate arguments for built-ins that use ordinary (value) arguments.
    	// For built-ins with special argument handling (make, new, etc.),
    	// evaluation is done by the respective built-in code.
    	var args []*operand // not valid for _Make, _New, _Offsetof, _Trace
    	var nargs int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/io/ByteStreams.java

       *       then sequentially accessing it could result in other processes dying. This is solvable
       *       via madvise(2), but that obviously doesn't exist in java.
       *   <li>Ordinary copy. Kernel copies bytes into a kernel buffer, from a kernel buffer into a
       *       userspace buffer (byte[] or ByteBuffer), then copies them from that buffer into the
       *       destination channel.
       * </ol>
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    			// this the start of a type parameter list, with some caveats:
    			// a single name followed by "]" tilts the decision towards an
    			// array declaration; a type parameter type that could also be
    			// an ordinary expression but which is followed by a comma tilts
    			// the decision towards a type parameter list.
    			if pname, ptype := extractName(x, p.tok == _Comma); pname != nil && (ptype != nil || p.tok != _Rbrack) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/regexp/syntax/parse.go

    			if r, rest := p.parsePerlClassEscape(t, re.Rune0[:0]); r != nil {
    				re.Rune = r
    				t = rest
    				p.push(re)
    				break BigSwitch
    			}
    			p.reuse(re)
    
    			// Ordinary single-character escape.
    			if c, t, err = p.parseEscape(t); err != nil {
    				return nil, err
    			}
    			p.literal(c)
    		}
    		lastRepeat = repeat
    	}
    
    	p.concat()
    	if p.swapVerticalBar() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/stmt.go

    			}
    		} else {
    			check.error(noNewVarPos, NoNewVar, "no new variables on left side of :=")
    		}
    	} else if sKey != nil /* lhs[0] != nil */ {
    		// ordinary assignment
    		for i, lhs := range lhs {
    			if lhs == nil {
    				continue
    			}
    
    			// assign to lhs iteration variable, if any
    			typ := rhs[i]
    			if typ == nil {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/call.go

    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    			check.hasCallOrRecv = true
    		}
    		return predeclaredFuncs[id].kind
    	}
    
    	// ordinary function/method call
    	// signature may be generic
    	cgocall := x.mode == cgofunc
    
    	// a type parameter may be "called" if all types have the same signature
    	sig, _ := coreType(x.typ).(*Signature)
    	if sig == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  10. src/os/file.go

    //
    // Only some kinds of files support setting a deadline. Calls to SetDeadline
    // for files that do not support deadlines will return ErrNoDeadline.
    // On most systems ordinary files do not support deadlines, but pipes do.
    //
    // A deadline is an absolute time after which I/O operations fail with an
    // error instead of blocking. The deadline applies to all future and pending
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top