Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Bell (0.1 sec)

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

    	// case our hash is imperfect.
    	//
    	// These lookups and updates use reasonable looking types in an attempt to
    	// make them robust to internal type assertions, but could equally well use
    	// arbitrary types.
    
    	// Create some distinct origin types. nullaryP and nullaryQ have no
    	// parameters and are identical (but have different type parameter names).
    	// unaryP has a parameter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 17 04:32:02 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modindex/build_read.go

    }
    
    // parseGoEmbed parses the text following "//go:embed" to extract the glob patterns.
    // It accepts unquoted space-separated patterns as well as double-quoted and back-quoted Go strings.
    // This is based on a similar function in cmd/compile/internal/gc/noder.go;
    // this version calculates position information as well.
    func parseGoEmbed(args string, pos token.Position) ([]fileEmbed, error) {
    	trimBytes := func(n int) {
    		pos.Offset += n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/lex/lex.go

    	return input
    }
    
    // The other files in this directory each contain an implementation of TokenReader.
    
    // A TokenReader is like a reader, but returns lex tokens of type Token. It also can tell you what
    // the text of the most recently returned token is, and where it was found.
    // The underlying scanner elides all spaces except newline, so the input looks like a stream of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/decl.go

    	// parameter its constraint interface: if the RHS is a lone type parameter, we will
    	// use its underlying type (like we do for any RHS in a type declaration), and its
    	// underlying type is an interface and the type declaration is well defined.
    	if isTypeParam(rhs) {
    		check.error(tdecl.Type, MisplacedTypeParam, "cannot use a type parameter as RHS in type declaration")
    		named.underlying = Typ[Invalid]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  5. src/cmd/go/scriptreadme_test.go

    The scripts' supporting files are unpacked relative to $GOPATH/src
    (aka $WORK/gopath/src) and then the script begins execution in that directory as
    well. Thus the example above runs in $WORK/gopath/src with GOPATH=$WORK/gopath
    and $WORK/gopath/src/hello.go containing the listed contents.
    
    {{.Language}}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/buildid.go

    // to continue working: it does no good if "-toolexec toolstash" is executing a
    // stashed copy of the compiler but the go command is acting as if it will run
    // the standard copy of the compiler. The solution is to ask the tool binary to tell
    // us its own build ID using the "-V=full" flag now supported by all tools.
    // Then we know we're getting the build ID of the compiler that will actually run
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/abi.go

    		}
    	}
    }
    
    // GenABIWrappers applies ABI information to Funcs and generates ABI
    // wrapper functions where necessary.
    func (s *SymABIs) GenABIWrappers() {
    	// For cgo exported symbols, we tell the linker to export the
    	// definition ABI to C. That also means that we don't want to
    	// create ABI wrappers even if there's a linkname.
    	//
    	// TODO(austin): Maybe we want to create the ABI wrappers, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs.go

    			//
    			// TODO(golang.org/issue/31730, golang.org/issue/30134): if the error
    			// is transient (we couldn't download go.mod), return the error from
    			// Downgrade. Currently, we can't tell what kind of error it is.
    			exclude(m)
    			return
    		}
    		for _, r := range list {
    			add(r)
    			if excluded[r] {
    				exclude(m)
    				return
    			}
    			rdeps[r] = append(rdeps[r], m)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/codehost/git_test.go

    					t.Errorf("Stat: non-nil info with nil Origin with error %q", err)
    				}
    				return
    			}
    			info.Origin = nil // TestLatest and ../../../testdata/script/reuse_git.txt test Origin well enough
    			if !reflect.DeepEqual(info, tt.info) {
    				t.Errorf("Stat: incorrect info\nhave %+v\nwant %+v", *info, *tt.info)
    			}
    		}
    	}
    
    	for _, tt := range []statTest{
    		{
    			repo: gitrepo1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/schedule.go

    	for _, a := range v.Args {
    		if a.isFlagOp() {
    			return true
    		}
    	}
    	// PPC64 carry dependencies are conveyed through their final argument,
    	// so we treat those operations as taking flags as well.
    	switch v.Op {
    	case OpPPC64SUBE, OpPPC64ADDE, OpPPC64SUBZEzero, OpPPC64ADDZE, OpPPC64ADDZEzero:
    		return true
    	}
    	return false
    }
    
    type bySourcePos []*Value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top