Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 328 for 2014 (0.17 sec)

  1. src/cmd/vendor/golang.org/x/text/language/language.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.
    
    //go:generate go run gen.go -output tables.go
    
    package language
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/ecdsa.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 ecdsa implements the Elliptic Curve Digital Signature Algorithm, as
    // defined in FIPS 186-4 and SEC 1, Version 2.0.
    //
    // Signatures generated by this package are not deterministic, but entropy is
    // mixed with the private key and the message, achieving the same level of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. src/database/sql/driver/driver.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 driver defines interfaces to be implemented by database
    // drivers as used by package sql.
    //
    // Most code should use the [database/sql] package.
    //
    // The driver interface has evolved over time. Drivers should implement
    // [Connector] and [DriverContext] interfaces.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  4. src/go/internal/gcimporter/gcimporter_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 gcimporter_test
    
    import (
    	"bytes"
    	"fmt"
    	"internal/testenv"
    	"os"
    	"os/exec"
    	"path"
    	"path/filepath"
    	"runtime"
    	"strings"
    	"testing"
    	"time"
    
    	"go/ast"
    	"go/build"
    	"go/importer"
    	"go/parser"
    	"go/token"
    	"go/types"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. src/syscall/exec_linux.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.
    
    //go:build linux
    
    package syscall
    
    import (
    	"internal/itoa"
    	"runtime"
    	"unsafe"
    )
    
    // Linux unshare/clone/clone2/clone3 flags, architecture-independent,
    // copied from linux/sched.h.
    const (
    	CLONE_VM             = 0x00000100 // set if VM shared between processes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  6. src/text/template/doc.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 implements data-driven templates for generating textual output.
    
    To generate HTML output, see [html/template], which has the same interface
    as this package but automatically secures HTML output against certain attacks.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  7. src/text/template/funcs.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"
    	"fmt"
    	"io"
    	"net/url"
    	"reflect"
    	"strings"
    	"sync"
    	"unicode"
    	"unicode/utf8"
    )
    
    // FuncMap is the type of the map defining the mapping from names to functions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  8. test/escape2.go

    // errorcheck -0 -m -l
    
    // 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.
    
    // Test, using compiler diagnostic flags, that the escape analysis is working.
    // Compiles but does not run.  Inlining is disabled.
    
    // escape2n.go contains all the same tests but compiles with -N.
    
    package foo
    
    import (
    	"fmt"
    	"unsafe"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  9. src/go/token/position.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 (
    	"cmp"
    	"fmt"
    	"slices"
    	"strconv"
    	"sync"
    	"sync/atomic"
    )
    
    // If debug is set, invalid offset and position values cause a panic
    // (go.dev/issue/57490).
    const debug = false
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. src/net/http/requestwrite_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 http
    
    import (
    	"bufio"
    	"bytes"
    	"errors"
    	"fmt"
    	"io"
    	"net"
    	"net/url"
    	"strings"
    	"testing"
    	"testing/iotest"
    	"time"
    )
    
    type reqWriteTest struct {
    	Req  Request
    	Body any // optional []byte or func() io.ReadCloser to populate Req.Body
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 01:07:32 UTC 2022
    - 23.3K bytes
    - Viewed (0)
Back to top