Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,424 for 2047 (0.44 sec)

  1. src/cmd/cgo/internal/testplugin/testdata/issue22175/plugin2.go

    // Copyright 2017 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 main
    
    func G() int { return 971 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 218 bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/test/issue6907export_c.c

    // Copyright 2017 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.
    
    #include <string.h>
    
    #include "_cgo_export.h"
    
    int CheckIssue6907C(_GoString_ s) {
    	return CheckIssue6907Go(s);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 274 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testplugin/testdata/issue18676/plugin.go

    // Copyright 2017 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 main
    
    import "C"
    
    import "testplugin/issue18676/dynamodbstreamsevt"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 278 bytes
    - Viewed (0)
  4. src/math/big/arith_amd64.go

    // Copyright 2017 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 !math_big_pure_go
    
    package big
    
    import "internal/cpu"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 278 bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testerrors/testdata/err4.go

    // Copyright 2017 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 main
    
    /*
    long double x = 0;
    */
    import "C"
    
    func main() {
    	_ = C.x // ERROR HERE
    	_ = C.x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 259 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/issue18676/dynamodbstreamsevt/definition.go

    // Copyright 2017 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 dynamodbstreamsevt
    
    import "encoding/json"
    
    var foo json.RawMessage
    
    type Event struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 285 bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testshared/testdata/iface_a/a.go

    // Copyright 2017 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 iface_a
    
    import "testshared/iface_i"
    
    //go:noinline
    func F() interface{} {
    	return (*iface_i.T)(nil)
    }
    
    //go:noinline
    func G() iface_i.I {
    	return (*iface_i.T)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 335 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/testdata/division/division.go

    // Copyright 2017 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 main
    
    //go:noinline
    func div(x, y uint32) uint32 {
    	return x / y
    }
    
    func main() {
    	a := div(97, 11)
    	if a != 8 {
    		panic("FAIL")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 302 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testplugin/testdata/iface_a/a.go

    // Copyright 2017 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 main
    
    import "testplugin/iface_i"
    
    //go:noinline
    func F() interface{} {
    	return (*iface_i.T)(nil)
    }
    
    //go:noinline
    func G() iface_i.I {
    	return (*iface_i.T)(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 332 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testing/testingcert/certificates.go

    //
    // ca-csr.json:
    //
    //	ca expiry was set to 100 years (876000h) ("ca":{"expiry":"876000h"})
    //	key was changed from ecdsa,384 to rsa,2048
    //
    // req-csr.json:
    //
    //	key was changed from ecdsa,384 to rsa,2048
    //	hosts were changed to "localhost","127.0.0.1"
    const CAFileContent = `
    -----BEGIN CERTIFICATE-----
    MIIEUDCCAzigAwIBAgIUKfV5+qwlw3JneAPdJS7JCO8xIlYwDQYJKoZIhvcNAQEL
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top