Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 147 for toen (0.03 sec)

  1. src/cmd/gofmt/gofmt.go

    const exclusive = -1
    
    // Add blocks until the sequencer has enough weight to spare, then adds f as a
    // task to be executed concurrently.
    //
    // If the weight is either negative or larger than the sequencer's maximum
    // weight, Add blocks until all other tasks have completed, then the task
    // executes exclusively (blocking all other calls to Add until it completes).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/rangefunc/rewrite.go

    		clr := &syntax.AssignStmt{
    			Lhs: r.next(),
    			Rhs: r.intConst(0),
    		}
    		thenList = append(thenList, clr)
    	}
    	for _, then := range thens {
    		thenList = append(thenList, then)
    	}
    	nif := &syntax.IfStmt{
    		Cond: r.cond(op, r.next(), r.intConst(c)),
    		Then: &syntax.BlockStmt{
    			List: thenList,
    		},
    	}
    	return nif
    }
    
    // setValueType marks x as a value with type typ.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    var packageCache = map[string]*Package{}
    
    // dirToImportPath returns the pseudo-import path we use for a package
    // outside the Go path. It begins with _/ and then contains the full path
    // to the directory. If the package lives in c:\home\gopher\my\pkg then
    // the pseudo-import path is _/c_/home/gopher/my/pkg.
    // Using a pseudo-import path like this makes the ./ imports no longer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/cgo/gcc.go

    	}
    }
    
    // recordTypedefs remembers in p.typedefs all the typedefs used in dtypes and its children.
    func (p *Package) recordTypedefs(dtype dwarf.Type, pos token.Pos) {
    	p.recordTypedefs1(dtype, pos, map[dwarf.Type]bool{})
    }
    
    func (p *Package) recordTypedefs1(dtype dwarf.Type, pos token.Pos, visited map[dwarf.Type]bool) {
    	if dtype == nil {
    		return
    	}
    	if visited[dtype] {
    		return
    	}
    	visited[dtype] = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  5. src/archive/tar/writer.go

    	"fmt"
    	"io"
    	"io/fs"
    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // Writer provides sequential writing of a tar archive.
    // [Writer.WriteHeader] begins a new file with the provided [Header],
    // and then Writer can be treated as an io.Writer to supply that file's data.
    type Writer struct {
    	w    io.Writer
    	pad  int64      // Amount of padding to write after current file entry
    	curr fileWriter // Writer for current file entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/3-iter.md

      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.
    - [SortedStableFunc](/pkg/slices#SortedStableFunc) is like `SortFunc`
      but uses a stable sort algorithm.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/compiler_internal.go

    // RenameResult takes an array of (result) fields and an index, and if the indexed field
    // 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.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/temp.go

    	"cmd/compile/internal/ir"
    	"cmd/compile/internal/typecheck"
    	"cmd/compile/internal/types"
    )
    
    // initStackTemp appends statements to init to initialize the given
    // temporary variable to val, and then returns the expression &tmp.
    func initStackTemp(init *ir.Nodes, tmp *ir.Name, val ir.Node) *ir.AddrExpr {
    	if val != nil && !types.Identical(tmp.Type(), val.Type()) {
    		base.Fatalf("bad initial value for %L: %L", tmp, val)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    // all its visible symbols. The argument must identify a package.
    //
    // For complete documentation, run "go help doc".
    package main
    
    import (
    	"bytes"
    	"flag"
    	"fmt"
    	"go/build"
    	"go/token"
    	"io"
    	"log"
    	"os"
    	"path"
    	"path/filepath"
    	"strings"
    
    	"cmd/internal/telemetry"
    )
    
    var (
    	unexported bool   // -u flag
    	matchCase  bool   // -c flag
    	chdir      string // -C flag
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    			// the package build. This static meta-data file is then
    			// consumed by a pseudo-action (writeCoverMetaAct) that
    			// adds it to a summary file, then this summary file is
    			// consumed by the various "run test" actions. Below we
    			// add a dependence edge between the build action and the
    			// "write meta files" pseudo-action, and then another dep
    			// from writeCoverMetaAct to the run action. See the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top