Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 368 for 2014 (0.03 sec)

  1. src/cmd/internal/obj/pcln.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 obj
    
    import (
    	"cmd/internal/goobj"
    	"cmd/internal/objabi"
    	"encoding/binary"
    	"fmt"
    	"log"
    )
    
    // funcpctab writes to dst a pc-value table mapping the code in func to the values
    // returned by valfunc parameterized by arg. The invocation of valfunc to update the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/runtime/softfloat64.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.
    
    // Software IEEE754 64-bit floating point.
    // Only referred to (and thus linked in) by softfloat targets
    // and by tests in this directory.
    
    package runtime
    
    const (
    	mantbits64 uint = 52
    	expbits64  uint = 11
    	bias64          = -1<<(expbits64-1) + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  5. src/crypto/tls/conn_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 tls
    
    import (
    	"bytes"
    	"io"
    	"net"
    	"testing"
    )
    
    func TestRoundUp(t *testing.T) {
    	if roundUp(0, 16) != 0 ||
    		roundUp(1, 16) != 16 ||
    		roundUp(15, 16) != 16 ||
    		roundUp(16, 16) != 16 ||
    		roundUp(17, 16) != 32 {
    		t.Error("roundUp broken")
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. 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)
  7. src/vendor/golang.org/x/text/unicode/norm/iter.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 norm
    
    import (
    	"fmt"
    	"unicode/utf8"
    )
    
    // MaxSegmentSize is the maximum size of a byte buffer needed to consider any
    // sequence of starter and non-starter runes for the purpose of normalization.
    const MaxSegmentSize = maxByteBufferSize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. src/encoding/csv/reader_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 csv
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"reflect"
    	"strings"
    	"testing"
    	"unicode/utf8"
    )
    
    type readTest struct {
    	Name      string
    	Input     string
    	Output    [][]string
    	Positions [][][2]int
    	Errors    []error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 04:25:13 UTC 2022
    - 19.1K bytes
    - Viewed (0)
Back to top