Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 279 for 2014 (0.06 sec)

  1. src/image/gif/reader.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 gif implements a GIF image decoder and encoder.
    //
    // The GIF specification is at https://www.w3.org/Graphics/GIF/spec-gif89a.txt.
    package gif
    
    import (
    	"bufio"
    	"compress/lzw"
    	"errors"
    	"fmt"
    	"image"
    	"image/color"
    	"io"
    )
    
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/time/zoneinfo.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 time
    
    import (
    	"errors"
    	"sync"
    	"syscall"
    )
    
    //go:generate env ZONEINFO=$GOROOT/lib/time/zoneinfo.zip go run genzabbrs.go -output zoneinfo_abbrs_windows.go
    
    // A Location maps time instants to the zone in use at that time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top