Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 137 for isto (0.1 sec)

  1. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	// Parameter value feeds unmodified into a top level indirect
    	// function call (assumes parameter is of function type).
    	ParamFeedsIndirectCall
    
    	// Parameter value feeds unmodified into an indirect function call
    	// that is conditional/nested (not guaranteed to execute). Assumes
    	// parameter is of function type.
    	ParamMayFeedIndirectCall
    
    	// Parameter value feeds unmodified into a top level "switch"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. doc/next/6-stdlib/3-iter.md

      a slice backward.
    - [Collect](/pkg/slices#Collect) collects values from an iterator into
      a new slice.
    - [AppendSeq](/pkg/slices#AppendSeq) appends values from an iterator to
      an existing slice.
    - [Sorted](/pkg/slices#Sorted) collects values from an iterator into a
      new slice, and then sorts the slice.
    - [SortedFunc](/pkg/slices#SortedFunc) is like `Sorted` but with a
      comparison function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/globallib/global.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package globallib
    
    // Data is large enough to that offsets into it do not fit into
    // 16-bit or 20-bit immediates. Ideally we'd also try and overrun
    // 32-bit immediates, but that requires the test machine to have
    // too much memory.
    var Data [1<<20 + 10]int64
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 485 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cover_error.txt

    [compiler:gccgo] skip
    
    # Test line numbers in cover errors.
    
    # Get errors from a go test into stderr.txt
    ! go test coverbad
    stderr 'p\.go:4:2' # look for error at coverbad/p.go:4
    [cgo] stderr 'p1\.go:6:2' # look for error at coverbad/p.go:6
    ! stderr $WORK # make sure temporary directory isn't in error
    
    cp stderr $WORK/stderr.txt
    
    # Get errors from coverage into stderr2.txt
    ! go test -cover coverbad
    cp stderr $WORK/stderr2.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 01 14:12:36 UTC 2022
    - 712 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/mod/example.com_join_v1.0.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 137 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/goversion.go

    package types
    
    import (
    	"fmt"
    	"internal/goversion"
    	"internal/lazyregexp"
    	"log"
    	"strconv"
    
    	"cmd/compile/internal/base"
    )
    
    // A lang is a language version broken into major and minor numbers.
    type lang struct {
    	major, minor int
    }
    
    // langWant is the desired language version set by the -lang flag.
    // If the -lang flag is not set, this is the zero value, meaning that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 21:36:02 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/list_goroot_symlink.txt

    # relative to the location of the go executable was a symlink to the real src
    # directory. (cmd/go expects that ../src is GOROOT/src, but it appears that the
    # Debian build of the Go toolchain is attempting to split GOROOT into binary and
    # source artifacts in different parent directories.)
    
    [short] skip 'copies the cmd/go binary'
    [!symlink] skip 'tests symlink-specific behavior'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:01:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/trim.go

    		// account for the merge.
    		if ns > 1 {
    			for _, v := range s.Values {
    				if v.Op == OpPhi {
    					mergePhi(v, j, b)
    				}
    
    			}
    			// Remove the phi-ops from `b` if they were merged into the
    			// phi-ops of `s`.
    			k := 0
    			for _, v := range b.Values {
    				if v.Op == OpPhi {
    					if v.Uses == 0 {
    						v.resetArgs()
    						continue
    					}
    					// Pad the arguments of the remaining phi-ops so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/codes.go

    type codeExpr int
    
    func (c codeExpr) Marker() pkgbits.SyncMarker { return pkgbits.SyncExpr }
    func (c codeExpr) Value() int                 { return int(c) }
    
    // TODO(mdempsky): Split expr into addr, for lvalues.
    const (
    	exprConst  codeExpr = iota
    	exprLocal           // local variable
    	exprGlobal          // global variable or function
    	exprCompLit
    	exprFuncLit
    	exprFieldVal
    	exprMethodVal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 20:07:46 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/compiler_internal.go

    // does not have a name and if the result in the signature also does not have a name,
    // then the signature and field are renamed to
    //
    //	fmt.Sprintf("#rv%d", i+1)`
    //
    // the newly named object is inserted into the signature's scope,
    // and the object and new field name are returned.
    //
    // The intended use for RenameResult is to allow rangefunc to assign results within a closure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top