Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 368 for 2014 (0.05 sec)

  1. src/runtime/syscall_windows_test.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 runtime_test
    
    import (
    	"fmt"
    	"internal/abi"
    	"internal/syscall/windows/sysdll"
    	"internal/testenv"
    	"io"
    	"math"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"strconv"
    	"strings"
    	"syscall"
    	"testing"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/plan9.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 ppc64asm
    
    import (
    	"fmt"
    	"strings"
    )
    
    // GoSyntax returns the Go assembler syntax for the instruction.
    // The pc is the program counter of the first instruction, used for expanding
    // PC-relative addresses into absolute ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm_test.go

    // Copyright 2013 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 cipher_test
    
    import (
    	"bytes"
    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"encoding/hex"
    	"errors"
    	"io"
    	"reflect"
    	"testing"
    )
    
    var aesGCMTests = []struct {
    	key, nonce, plaintext, ad, result string
    }{
    	{ // key=16, plaintext=null
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 15:27:49 UTC 2023
    - 35K bytes
    - Viewed (0)
  4. src/net/http/fcgi/child.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 fcgi
    
    // This file implements FastCGI from the perspective of a child process.
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/http"
    	"net/http/cgi"
    	"os"
    	"strings"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. src/encoding/gob/gobencdec_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.
    
    // This file contains tests of the GobEncoder/GobDecoder support.
    
    package gob
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    )
    
    // Types that implement the GobEncoder/Decoder interfaces.
    
    type ByteStruct struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  6. src/text/template/parse/parse.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 parse builds parse trees for templates as defined by text/template
    // and html/template. Clients should use those packages to construct templates
    // rather than this one, which provides shared internal data structures not
    // intended for general use.
    package parse
    
    import (
    	"bytes"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/action.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 creation (planning).
    
    package work
    
    import (
    	"bufio"
    	"bytes"
    	"cmd/internal/cov/covcmd"
    	"container/heap"
    	"context"
    	"debug/elf"
    	"encoding/json"
    	"fmt"
    	"internal/platform"
    	"os"
    	"path/filepath"
    	"strings"
    	"sync"
    	"time"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:39:17 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/nilcheck.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 ssa
    
    import (
    	"cmd/compile/internal/ir"
    	"cmd/internal/src"
    	"internal/buildcfg"
    )
    
    // nilcheckelim eliminates unnecessary nil checks.
    // runs on machine-independent code.
    func nilcheckelim(f *Func) {
    	// A nil check is redundant if the same nil check was successful in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins_test.go

    // Copyright 2013 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_test
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"testing"
    
    	. "cmd/compile/internal/types2"
    )
    
    var builtinCalls = []struct {
    	name, src, sig string
    }{
    	{"append", `var s []int; _ = append(s)`, `func([]int, ...int) []int`},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 18:06:31 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/testflag.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 test
    
    import (
    	"cmd/go/internal/base"
    	"cmd/go/internal/cmdflag"
    	"cmd/go/internal/work"
    	"errors"
    	"flag"
    	"fmt"
    	"os"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    )
    
    //go:generate go run ./genflags.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 12.2K bytes
    - Viewed (0)
Back to top