Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 277 for 2014 (0.09 sec)

  1. 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)
  2. 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)
  3. src/go/types/stmt.go

    // Copyright 2012 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 implements typechecking of statements.
    
    package types
    
    import (
    	"go/ast"
    	"go/constant"
    	"go/token"
    	"internal/buildcfg"
    	. "internal/types/errors"
    	"sort"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/html/template/js_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 template
    
    import (
    	"errors"
    	"math"
    	"strings"
    	"testing"
    )
    
    func TestNextJsCtx(t *testing.T) {
    	tests := []struct {
    		jsCtx jsCtx
    		s     string
    	}{
    		// Statement terminators precede regexps.
    		{jsCtxRegexp, ";"},
    		// This is not airtight.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. src/cmd/cover/cover.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 main
    
    import (
    	"bytes"
    	"cmd/internal/cov/covcmd"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"internal/coverage"
    	"internal/coverage/encodemeta"
    	"internal/coverage/slicewriter"
    	"io"
    	"log"
    	"os"
    	"path/filepath"
    	"sort"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  9. src/encoding/json/decode.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.
    
    // Represents JSON data structure using native Go types: booleans, floats,
    // strings, arrays, and maps.
    
    package json
    
    import (
    	"encoding"
    	"encoding/base64"
    	"fmt"
    	"reflect"
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf16"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. src/fmt/scan.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 fmt
    
    import (
    	"errors"
    	"io"
    	"math"
    	"os"
    	"reflect"
    	"strconv"
    	"sync"
    	"unicode/utf8"
    )
    
    // ScanState represents the scanner state passed to custom scanners.
    // Scanners may do rune-at-a-time scanning or ask the ScanState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
Back to top