Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,673 for Runtimes (0.21 sec)

  1. test/runtime.go

    // Test that even if a file imports runtime,
    // it cannot get at the low-level runtime definitions
    // known to the compiler.  For normal packages
    // the compiler doesn't even record the lower case
    // functions in its symbol table, but some functions
    // in runtime are hard-coded into the compiler.
    // Does not compile.
    
    package main
    
    import "runtime"
    
    func main() {
    	runtime.printbool(true)	// ERROR "unexported|undefined"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:56:19 UTC 2020
    - 600 bytes
    - Viewed (0)
  2. src/sync/runtime2.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !goexperiment.staticlockranking
    
    package sync
    
    import "unsafe"
    
    // Approximation of notifyList in runtime/sema.go. Size and alignment must
    // agree.
    type notifyList struct {
    	wait   uint32
    	notify uint32
    	lock   uintptr // key field of the mutex
    	head   unsafe.Pointer
    	tail   unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 465 bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/runtime/runtime.h

    namespace tf {
    namespace libtf {
    namespace runtime {
    
    /// @brief A runtime object capable of loading modules and executing functions.
    ///
    /// It is the responsibility of the owner of the Runtime to keep it alive longer
    /// than all imported modules.
    class Runtime : public Object {
     public:
      // TODO(b/191264214): Remove need for AbstractContext
      explicit Runtime(tensorflow::AbstractContext* ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  4. pilot/pkg/util/runtime/runtime.go

    // limitations under the License.
    
    package runtime
    
    import (
    	"runtime"
    
    	"istio.io/istio/pkg/log"
    )
    
    // LogPanic logs the caller tree when a panic occurs.
    func LogPanic(r any) {
    	// Same as stdlib http server code. Manually allocate stack trace buffer size
    	// to prevent excessively large logs
    	const size = 64 << 10
    	stacktrace := make([]byte, size)
    	stacktrace = stacktrace[:runtime.Stack(stacktrace, false)]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. pkg/kubelet/runtime.go

    	s.RLock()
    	defer s.RUnlock()
    	errs := []error{}
    	if s.lastBaseRuntimeSync.IsZero() {
    		errs = append(errs, errors.New("container runtime status check may not have completed yet"))
    	} else if !s.lastBaseRuntimeSync.Add(s.baseRuntimeSyncThreshold).After(time.Now()) {
    		errs = append(errs, errors.New("container runtime is down"))
    	}
    	for _, hc := range s.healthChecks {
    		if ok, err := hc.fn(); !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/runtime/runtime.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package runtime
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"runtime"
    	"sync"
    	"time"
    
    	"k8s.io/klog/v2"
    )
    
    var (
    	// ReallyCrash controls the behavior of HandleCrash and defaults to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    // Specialized versions of convT for specific types.
    // These functions take concrete types in the runtime. But they may
    // be used for a wider range of types, which have the same memory
    // layout as the parameter type. The compiler converts the
    // to-be-converted type to the parameter type before calling the
    // runtime function. This way, the call is ABI-insensitive.
    func convT16(val uint16) unsafe.Pointer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/internal/abi/runtime.go

    // Copyright 2024 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 abi
    
    // ZeroValSize is the size in bytes of runtime.zeroVal.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:38 UTC 2024
    - 254 bytes
    - Viewed (0)
  9. src/runtime/runtime-gdb.py

    
    G_IDLE = read_runtime_const("'runtime._Gidle'", 0)
    G_RUNNABLE = read_runtime_const("'runtime._Grunnable'", 1)
    G_RUNNING = read_runtime_const("'runtime._Grunning'", 2)
    G_SYSCALL = read_runtime_const("'runtime._Gsyscall'", 3)
    G_WAITING = read_runtime_const("'runtime._Gwaiting'", 4)
    G_MORIBUND_UNUSED = read_runtime_const("'runtime._Gmoribund_unused'", 5)
    G_DEAD = read_runtime_const("'runtime._Gdead'", 6)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    // Copyright 2009 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 runtime
    
    import (
    	"internal/abi"
    	"internal/runtime/atomic"
    	"unsafe"
    )
    
    //go:generate go run wincallback.go
    //go:generate go run mkduff.go
    //go:generate go run mkfastlog2table.go
    //go:generate go run mklockrank.go -o lockrank.go
    
    var ticks ticksType
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top