Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for 2014 (0.27 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    // Copyright 2015 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 demangle
    
    import (
    	"fmt"
    	"strings"
    )
    
    // AST is an abstract syntax tree representing a C++ declaration.
    // This is sufficient for the demangler but is by no means a general C++ AST.
    // This abstract syntax tree is only used for C++ symbols, not Rust symbols.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/generic.rules

    // Copyright 2015 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.
    
    // Simplifications that apply to all backend architectures. As an example, this
    // Go source code
    //
    // y := 0 * x
    //
    // can be translated into y := 0 without losing any information, which saves a
    // pointless multiplication instruction. Other .rules files in this directory
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  3. src/html/entity.go

    // Copyright 2010 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 html
    
    import "sync"
    
    // All entities that do not end with ';' are 6 or fewer bytes long.
    const longestEntityWithoutSemicolon = 6
    
    // entity is a map from HTML entity names to their values. The semicolon matters:
    // https://html.spec.whatwg.org/multipage/named-characters.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // Copyright 2011 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 windows
    
    import (
    	"net"
    	"syscall"
    	"unsafe"
    )
    
    // NTStatus corresponds with NTSTATUS, error values returned by ntdll.dll and
    // other native functions.
    type NTStatus uint32
    
    const (
    	// Invented values to support what package os expects.
    	O_RDONLY   = 0x00000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	200: {lang: 0x3cb, region: 0x96},
    	203: {lang: 0x372, region: 0x10d},
    	204: {lang: 0x420, region: 0x98},
    	206: {lang: 0x4ff, region: 0x15f},
    	207: {lang: 0x3f0, region: 0x9a},
    	208: {lang: 0x45, region: 0x136},
    	209: {lang: 0x139, region: 0x7c},
    	210: {lang: 0x3e9, region: 0x9a},
    	212: {lang: 0x3e9, region: 0x9a},
    	213: {lang: 0x3fa, region: 0x9a},
    	214: {lang: 0x40c, region: 0xb4},
    	217: {lang: 0x433, region: 0x9a},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    // Copyright 2011 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.
    
    // Tests for transport.go.
    //
    // More tests are in clientserver_test.go (for things testing both client & server for both
    // HTTP/1 and HTTP/2). This
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"crypto/x509"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    Hail, and that the globules are all of the same bigness; and the Sun seen through this Cloud shall appear encompassed with the like concentrick Rings of Colours, and the Diameter of the first Ring of red shall be 7-1/4 Degrees, that of the second 10-1/4 Degrees, that of the third 12 Degrees 33 Minutes. And accordingly as the Globules of Water are bigger or less, the Rings shall be less or bigger. This is the Theory, and Experience answers it. For in _June_ 1692, I saw by reflexion in a Vessel of...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    // Copyright 2011 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.
    
    // Action graph execution.
    
    package work
    
    import (
    	"bytes"
    	"cmd/internal/cov/covcmd"
    	"context"
    	"crypto/sha256"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"go/token"
    	"internal/lazyregexp"
    	"io"
    	"io/fs"
    	"log"
    	"math/rand"
    	"os"
    	"os/exec"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    // Copyright 2011 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 sql
    
    import (
    	"context"
    	"database/sql/driver"
    	"errors"
    	"fmt"
    	"internal/race"
    	"internal/testenv"
    	"math/rand"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"time"
    )
    
    func init() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/internal/trace/testdata/tests/go122-gc-stress.test

    GoStart dt=6 g=54 g_seq=16
    GoLabel dt=1 label_string=4
    GoBlock dt=2984 reason_string=15 stack=5
    GoUnblock dt=2696 g=52 g_seq=21 stack=0
    GoStart dt=3 g=52 g_seq=22
    GoLabel dt=1 label_string=4
    GoBlock dt=2013 reason_string=15 stack=5
    GoStart dt=18 g=98 g_seq=6
    GCMarkAssistEnd dt=6
    HeapAlloc dt=44 heapalloc_value=192003520
    GCMarkAssistBegin dt=54 stack=3
    GoBlock dt=481 reason_string=13 stack=11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 139.1K bytes
    - Viewed (0)
Back to top