Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 368 for 2014 (0.06 sec)

  1. test/live.go

    // rescheduling checks need to be turned off because there are some live variables across the inserted check call
    //
    // For register ABI, liveness info changes slightly. See live_regabi.go.
    
    // Copyright 2014 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.
    
    // liveness tests with inlining disabled.
    // see also live2.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. src/testing/testing_test.go

    // Copyright 2014 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 testing_test
    
    import (
    	"bytes"
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    // This is exactly what a test would do without a TestMain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/decl.go

    // Copyright 2014 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 types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"go/constant"
    	"internal/buildcfg"
    	. "internal/types/errors"
    )
    
    func (check *Checker) declare(scope *Scope, id *syntax.Name, obj Object, pos syntax.Pos) {
    	// spec: "The blank identifier, represented by the underscore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. src/cmd/trace/goroutines.go

    // Copyright 2014 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.
    
    // Goroutine-related profiles.
    
    package main
    
    import (
    	"cmp"
    	"fmt"
    	"html/template"
    	"internal/trace"
    	"internal/trace/traceviewer"
    	"log"
    	"net/http"
    	"slices"
    	"sort"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/runtime/iface.go

    // Copyright 2014 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 runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    const itabInitSize = 512
    
    var (
    	itabLock      mutex                               // lock for accessing itab table
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/runtime/panic.go

    // Copyright 2014 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 runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"internal/stringslite"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // throwType indicates the current type of ongoing throw, which affects the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    // Copyright 2014 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.
    
    // Table-driven decoding of x86 instructions.
    
    package x86asm
    
    import (
    	"encoding/binary"
    	"errors"
    	"fmt"
    	"runtime"
    )
    
    // Set trace to true to cause the decoder to print the PC sequence
    // of the executed instruction codes. This is typically only useful
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/arm/armasm/plan9x.go

    // Copyright 2014 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 armasm
    
    import (
    	"bytes"
    	"encoding/binary"
    	"fmt"
    	"io"
    	"math"
    	"strings"
    )
    
    // GoSyntax returns the Go assembler syntax for the instruction.
    // The syntax was originally defined by Plan 9.
    // The pc is the program counter of the instruction, used for expanding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/runtime/netpoll_solaris.go

    // Copyright 2014 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 runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    // Solaris runtime-integrated network poller.
    //
    // Solaris uses event ports for scalable network I/O. Event
    // ports are level-triggered, unlike epoll and kqueue which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. src/runtime/symtab.go

    // Copyright 2014 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 runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // Frames may be used to get function/file/line information for a
    // slice of PC values returned by [Callers].
    type Frames struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top