Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 279 for 2014 (0.19 sec)

  1. src/cmd/internal/archive/archive.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 archive implements reading of archive files generated by the Go
    // toolchain.
    package archive
    
    import (
    	"bufio"
    	"bytes"
    	"cmd/internal/bio"
    	"cmd/internal/goobj"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"os"
    	"strconv"
    	"strings"
    	"time"
    	"unicode/utf8"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/go/types/stdlib_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.
    
    // This file tests types.Check by using it to
    // typecheck the standard library and tests.
    
    package types_test
    
    import (
    	"errors"
    	"fmt"
    	"go/ast"
    	"go/build"
    	"go/importer"
    	"go/parser"
    	"go/scanner"
    	"go/token"
    	"internal/testenv"
    	"os"
    	"path/filepath"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 19 04:39:56 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. src/image/gif/writer.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 gif
    
    import (
    	"bufio"
    	"bytes"
    	"compress/lzw"
    	"errors"
    	"image"
    	"image/color"
    	"image/color/palette"
    	"image/draw"
    	"internal/byteorder"
    	"io"
    )
    
    // Graphic control extension fields.
    const (
    	gcLabel     = 0xF9
    	gcBlockSize = 0x04
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. src/net/http/pprof/pprof.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 pprof serves via its HTTP server runtime profiling data
    // in the format expected by the pprof visualization tool.
    //
    // The package is typically only imported for the side effect of
    // registering its HTTP handlers.
    // The handled paths all begin with /debug/pprof/.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. src/encoding/csv/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 csv reads and writes comma-separated values (CSV) files.
    // There are many kinds of CSV files; this package supports the format
    // described in RFC 4180, except that [Writer] uses LF
    // instead of CRLF as newline character by default.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/go/token/position_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 token
    
    import (
    	"fmt"
    	"math/rand"
    	"reflect"
    	"sync"
    	"testing"
    )
    
    func checkPos(t *testing.T, msg string, got, want Position) {
    	if got.Filename != want.Filename {
    		t.Errorf("%s: got filename = %q; want %q", msg, got.Filename, want.Filename)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. src/index/suffixarray/suffixarray_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 suffixarray
    
    import (
    	"bytes"
    	"fmt"
    	"io/fs"
    	"math/rand"
    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    )
    
    type testCase struct {
    	name     string   // name of test case
    	source   string   // source to index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. src/mime/multipart/multipart.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 multipart implements MIME multipart parsing, as defined in RFC
    2046.
    
    The implementation is sufficient for HTTP (RFC 2388) and the multipart
    bodies generated by popular browsers.
    
    # Limits
    
    To protect against malicious inputs, this package sets limits on the size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/syscall/security_windows.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.
    
    package syscall
    
    import (
    	"unsafe"
    )
    
    const (
    	STANDARD_RIGHTS_REQUIRED = 0xf0000
    	STANDARD_RIGHTS_READ     = 0x20000
    	STANDARD_RIGHTS_WRITE    = 0x20000
    	STANDARD_RIGHTS_EXECUTE  = 0x20000
    	STANDARD_RIGHTS_ALL      = 0x1F0000
    )
    
    const (
    	NameUnknown          = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/named.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 types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"strings"
    	"sync"
    	"sync/atomic"
    )
    
    // Type-checking Named types is subtle, because they may be recursively
    // defined, and because their full details may be spread across multiple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top