Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 2,601 for Here (0.14 sec)

  1. src/cmd/cgo/internal/testerrors/testdata/issue11097a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    /*
    //enum test { foo, bar };
    */
    import "C"
    
    func main() {
    	var a = C.enum_test(1) // ERROR HERE
    	_ = a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 279 bytes
    - Viewed (0)
  2. test/fixedbugs/bug083.dir/bug1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bug1
    
    import "./bug0"
    
    // This is expected to fail--t0 is in package bug0 and should not be
    // visible here in package bug1.  The test for failure is in
    // ../bug083.go.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 372 bytes
    - Viewed (0)
  3. CODEOWNERS

    # Where component owners are known, add them here.
    
    /tensorflow/c/eager @qqfish
    /tensorflow/core/common_runtime/eager @qqfish
    /tenosrflow/core/debug @caisq
    /tensorflow/core/kernels/mkl/ @penpornk
    /tensorflow/core/kernels/sparse/ @penpornk
    /tensorflow/core/nccl/ @azaks2 @chsigg
    /tensorflow/python/autograph/ @mdanatg
    /tensorflow/python/debug @caisq
    /tensorflow/python/eager @rohan100jain
    /tensorflow/tools/docs/ @markdaoust
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 21:02:49 UTC 2022
    - 563 bytes
    - Viewed (0)
  4. src/crypto/internal/boring/bcache/stub.s

    // Copyright 2022 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.
    
    // This file is here to silence an error about registerCache not having a body.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 11:50:31 UTC 2022
    - 286 bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue66064.go

    // license that can be found in the LICENSE file.
    
    //go:build go1.21
    
    package main
    
    import "slices"
    
    func main() {
    	_ = slices.Clone([]string{}) // no error should be reported here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 23:12:40 UTC 2024
    - 309 bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testerrors/testdata/issue67517.go

    // license that can be found in the LICENSE file.
    
    package main
    
    // typedef struct { int a; void* ptr; } S;
    // static void f(S* p) {}
    import "C"
    
    func main() {
    	C.f(&C.S{
    		a: 1+
    
    			(3 + ""), // ERROR HERE
    
    		ptr: nil,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 335 bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue48819.go

    package p
    
    import "unsafe"
    
    type T /* ERROR "invalid recursive type: T refers to itself" */ struct {
    	T
    }
    
    func _(t T) {
    	_ = unsafe.Sizeof(t) // should not go into infinite recursion here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:25 UTC 2023
    - 351 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/interleaved/interleaved.go

    	}
    
    	// First compute inlinability of all functions in the package.
    	inline.CanInlineFuncs(pkg.Funcs, inlProfile)
    
    	// Now we make a second pass to do devirtualization and inlining of
    	// calls. Order here should not matter.
    	for _, fn := range pkg.Funcs {
    		DevirtualizeAndInlineFunc(fn, inlProfile)
    	}
    
    	if base.Flag.LowerL != 0 {
    		// Perform a garbage collection of hidden closures functions that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. src/runtime/defs_linux_loong64.go

    	it_value    timespec
    }
    
    type itimerval struct {
    	it_interval timeval
    	it_value    timeval
    }
    
    type sigeventFields struct {
    	value  uintptr
    	signo  int32
    	notify int32
    	// below here is a union; sigev_notify_thread_id is the only field we use
    	sigev_notify_thread_id int32
    }
    
    type sigevent struct {
    	sigeventFields
    	// Pad struct to the max size in the kernel.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/internal.kt

    ) = connectionSpec.apply(sslSocket, isFallback)
    
    internal fun ConnectionSpec.effectiveCipherSuites(socketEnabledCipherSuites: Array<String>): Array<String> {
      return if (cipherSuitesAsString != null) {
        // 3 options here for ordering
        // 1) Legacy Platform - based on the Platform/Provider existing ordering in
        // sslSocket.enabledCipherSuites
        // 2) OkHttp Client - based on MODERN_TLS source code ordering
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top