Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 279 for 2014 (0.03 sec)

  1. 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)
  2. 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)
  3. src/net/http/cookiejar/jar_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 cookiejar
    
    import (
    	"fmt"
    	"net/http"
    	"net/url"
    	"slices"
    	"strings"
    	"testing"
    	"time"
    )
    
    // tNow is the synthetic current time used as now during testing.
    var tNow = time.Date(2013, 1, 1, 12, 0, 0, 0, time.UTC)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/api.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 types2 declares the data types and implements
    // the algorithms for type-checking of Go packages. Use
    // Config.Check to invoke the type checker for a package.
    // Alternatively, create a new type checker with NewChecker
    // and invoke it incrementally by calling Checker.Files.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule.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/base"
    	"cmd/compile/internal/types"
    	"container/heap"
    	"sort"
    )
    
    const (
    	ScorePhi       = iota // towards top of block
    	ScoreArg              // must occur at the top of the entry block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/parse.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 language
    
    import (
    	"bytes"
    	"errors"
    	"fmt"
    	"sort"
    
    	"golang.org/x/text/internal/tag"
    )
    
    // isAlpha returns true if the byte is not a digit.
    // b must be an ASCII letter or digit.
    func isAlpha(b byte) bool {
    	return b > '9'
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/database/sql/convert_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 sql
    
    import (
    	"database/sql/driver"
    	"fmt"
    	"reflect"
    	"runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    )
    
    var someTime = time.Unix(123, 0)
    var answer int64 = 42
    
    type (
    	userDefined       float64
    	userDefinedSlice  []int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  8. src/image/jpeg/writer.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 jpeg
    
    import (
    	"bufio"
    	"errors"
    	"image"
    	"image/color"
    	"io"
    )
    
    // div returns a/b rounded to the nearest integer, instead of rounded to zero.
    func div(a, b int32) int32 {
    	if a >= 0 {
    		return (a + (b >> 1)) / b
    	}
    	return -((-a + (b >> 1)) / b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/net/udpsock_test.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 net
    
    import (
    	"errors"
    	"fmt"
    	"internal/testenv"
    	"net/netip"
    	"os"
    	"reflect"
    	"runtime"
    	"testing"
    	"time"
    )
    
    func BenchmarkUDP6LinkLocalUnicast(b *testing.B) {
    	testHookUninstaller.Do(uninstallTestHooks)
    
    	if !supportsIPv6() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  10. src/os/file_plan9.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 os
    
    import (
    	"internal/bytealg"
    	"internal/poll"
    	"internal/stringslite"
    	"io"
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"time"
    )
    
    // fixLongPath is a noop on non-Windows platforms.
    func fixLongPath(path string) string {
    	return path
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top