Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 172 for cc_test (0.15 sec)

  1. src/cmp/cmp_test.go

    // Copyright 2023 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 cmp_test
    
    import (
    	"cmp"
    	"fmt"
    	"math"
    	"slices"
    	"sort"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    var negzero = math.Copysign(0, -1)
    var nonnilptr uintptr = uintptr(unsafe.Pointer(&negzero))
    var nilptr uintptr = uintptr(unsafe.Pointer(nil))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/cgo_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.
    
    //go:build cgo
    
    package cgotest
    
    import "testing"
    
    // The actual test functions are in non-_test.go files
    // so that they can use cgo (import "C").
    // These wrappers are here for gotest to find.
    
    func Test1328(t *testing.T)                  { test1328(t) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_load_err.txt

    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    package constraint
    
    -- constraint/good.go --
    package constraint
    
    import _ "m/want"
    
    -- cgotest/cgo_test.go --
    package cgo_test
    
    // cgo is not allowed in tests.
    // See golang.org/issue/18647
    
    import "C"
    import (
    	"testing"
    	_ "m/want"
    )
    
    func Test(t *testing.T) {}
    
    -- cgoflag/cgoflag.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    Keith Randall <******@****.***> 1717538095 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/internal/trace/gc_test.go

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. src/go/build/testdata/doc/c_test.go

    jimmyfrasche <******@****.***> 1519513438 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 07 14:35:52 UTC 2018
    - 12 bytes
    - Viewed (0)
  7. tensorflow/c/c_test.c

    A. Unique TensorFlower <******@****.***> 1713990157 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:50:35 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. src/go/build/testdata/directives/c_test.go

    //go:xtest1
    
    package p_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 42 bytes
    - Viewed (0)
  9. security/pkg/pki/ca/ca_test.go

    Jackie Elliott <******@****.***> 1698742287 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 08:51:27 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  10. src/crypto/cipher/cfb_test.go

    Iskander Sharipov <******@****.***> 1551509504 +0300
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:18:36 UTC 2019
    - 2.8K bytes
    - Viewed (0)
Back to top