Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 368 for 2014 (0.03 sec)

  1. src/runtime/crash_cgo_test.go

    			t.Skip("too slow for mips64x builders")
    		}
    	}
    	if testenv.Builder() == "darwin-amd64-10_14" {
    		// TODO(#23011): When the 10.14 builders are gone, remove this skip.
    		t.Skip("skipping due to platform bug on macOS 10.14; see https://golang.org/issue/43926")
    	}
    	got := runTestProg(t, "testprogcgo", "CgoCallbackGC")
    	want := "OK\n"
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  2. test/recover.go

    // run
    
    // 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 of basic recover functionality.
    
    package main
    
    import (
    	"os"
    	"reflect"
    	"runtime"
    )
    
    func main() {
    	// go.tools/ssa/interp still has:
    	// - some lesser bugs in recover()
    	// - incomplete support for reflection
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  3. src/sort/gen_sort_variants.go

    // the SymMerge algorithm from Pok-Son Kim and Arne Kutzner, "Stable Minimum
    // Storage Merging by Symmetric Comparisons", in Susanne Albers and Tomasz
    // Radzik, editors, Algorithms - ESA 2004, volume 3221 of Lecture Notes in
    // Computer Science, pages 714-723. Springer, 2004.
    //
    // Let M = m-a and N = b-n. Wolog M < N.
    // The recursion depth is bound by ceil(log(N+M)).
    // The algorithm needs O(M*log(N/M + 1)) calls to data.Less.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/LICENSE

                                     Apache License
                               Version 2.0, January 2004
                            http://www.apache.org/licenses/
    
       TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
    
       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 19:18:53 UTC 2017
    - 11.1K bytes
    - Viewed (0)
  5. src/text/template/multi_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 template
    
    // Tests for multiple-template parsing and execution.
    
    import (
    	"fmt"
    	"os"
    	"strings"
    	"testing"
    	"text/template/parse"
    )
    
    const (
    	noError  = true
    	hasError = false
    )
    
    type multiParseTest struct {
    	name    string
    	input   string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  6. src/text/template/parse/lex_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 parse
    
    import (
    	"fmt"
    	"testing"
    )
    
    // Make the types prettyprint.
    var itemName = map[itemType]string{
    	itemError:        "error",
    	itemBool:         "bool",
    	itemChar:         "char",
    	itemCharConstant: "charconst",
    	itemComment:      "comment",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 23 15:03:43 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  7. src/net/http/httptest/server.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.
    
    // Implementation of Server
    
    package httptest
    
    import (
    	"crypto/tls"
    	"crypto/x509"
    	"flag"
    	"fmt"
    	"log"
    	"net"
    	"net/http"
    	"net/http/internal/testcert"
    	"os"
    	"strings"
    	"sync"
    	"time"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. src/cmd/internal/dwarf/dwarf_defs.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 dwarf
    
    // Cut, pasted, tr-and-awk'ed from tables in
    // http://dwarfstd.org/doc/Dwarf3.pdf
    
    // Table 18
    const (
    	DW_TAG_array_type               = 0x01
    	DW_TAG_class_type               = 0x02
    	DW_TAG_entry_point              = 0x03
    	DW_TAG_enumeration_type         = 0x04
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  9. src/net/http/readrequest_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"
    	"fmt"
    	"io"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    )
    
    type reqTest struct {
    	Raw     string
    	Req     *Request
    	Body    string
    	Trailer Header
    	Error   string
    }
    
    var noError = ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    // Copyright 2014 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_test
    
    import (
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"internal/poll"
    	"internal/syscall/windows"
    	"internal/syscall/windows/registry"
    	"internal/testenv"
    	"io"
    	"io/fs"
    	"os"
    	"os/exec"
    	"path/filepath"
    	"reflect"
    	"runtime"
    	"slices"
    	"strings"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top