Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for 2014 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/reflect/all_test.go

    	{S3{}, "B", nil, 0},
    	{S3{D: 'd'}, "D", []int{2}, 0},
    	{S3{E: 'e'}, "E", []int{3}, 'e'},
    	{S4{A: 'a'}, "A", []int{1}, 'a'},
    	{S4{}, "B", nil, 0},
    	{S5{}, "X", nil, 0},
    	{S5{}, "Y", []int{2, 0, 1}, 0},
    	{S10{}, "X", nil, 0},
    	{S10{}, "Y", []int{2, 0, 0, 1}, 0},
    	{S14{}, "X", nil, 0},
    }
    
    func TestFieldByIndex(t *testing.T) {
    	for _, test := range fieldTests {
    		s := TypeOf(test.s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. doc/go1.17_spec.html

    </p>
    
    <p>
    If the operands of these functions are all constants, the return
    value is a constant.
    </p>
    
    <pre>
    var a = complex(2, -2)             // complex128
    const b = complex(1.0, -1.4)       // untyped complex constant 1 - 1.4i
    x := float32(math.Cos(math.Pi/2))  // float32
    var c64 = complex(5, -x)           // complex64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top