Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,541 for RUNTIME (0.15 sec)

  1. tensorflow/cc/experimental/libtf/runtime/runtime.cc

          module.dict()[TaggedValue(child_name)] = callable;
        }
      }
      return module;
    }
    
    // Instantiate the Runtime, creating relevant Callables for later use.
    Runtime::Runtime(AbstractContext* ctx) {
      TaggedValue ctx_capsule =
          TaggedValue::Capsule(static_cast<void*>(ctx), [](void* p) {
            auto ctx = static_cast<AbstractContext*>(p);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/runtime/runtime.go

    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    	runtimeService, err := runtime.impl.NewRemoteRuntimeService(runtime.criSocket, defaultTimeout)
    	if err != nil {
    		return errors.Wrap(err, "failed to create new CRI runtime service")
    	}
    	runtime.runtimeService = runtimeService
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. src/runtime/pprof/runtime.go

    package pprof
    
    import (
    	"context"
    	"runtime"
    	"unsafe"
    )
    
    // runtime_FrameStartLine is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameStartLine(f *runtime.Frame) int
    
    // runtime_FrameSymbolName is defined in runtime/symtab.go.
    //
    //go:noescape
    func runtime_FrameSymbolName(f *runtime.Frame) string
    
    // runtime_expandFinalInlineFrame is defined in runtime/symtab.go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. src/sync/runtime.go

    func runtime_Semrelease(s *uint32, handoff bool, skipframes int)
    
    // See runtime/sema.go for documentation.
    func runtime_notifyListAdd(l *notifyList) uint32
    
    // See runtime/sema.go for documentation.
    func runtime_notifyListWait(l *notifyList, t uint32)
    
    // See runtime/sema.go for documentation.
    func runtime_notifyListNotifyAll(l *notifyList)
    
    // See runtime/sema.go for documentation.
    func runtime_notifyListNotifyOne(l *notifyList)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 16:32:27 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/base/public/runtime.h

    // these Runtime-attached objects (such as tensorflow::cc::TensorHandle), the
    // Runtime must outlive these objects.
    class Runtime {
     public:
      // Runtime is movable, but not copyable.
      Runtime(Runtime&&) = default;
      Runtime& operator=(Runtime&&) = default;
    
     private:
      friend class RuntimeBuilder;
      friend class SavedModelAPI;
      friend class TensorHandle;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  7. pkg/test/framework/runtime.go

    )
    
    var _ resource.Dumper = &runtime{}
    
    // runtime for the test environment.
    type runtime struct {
    	context *suiteContext
    }
    
    // newRuntime returns a new runtime instance.
    func newRuntime(s *resource.Settings, fn resource.EnvironmentFactory, labels label.Set) (*runtime, error) {
    	ctx, err := newSuiteContext(s, fn, labels)
    	if err != nil {
    		return nil, err
    	}
    	return &runtime{
    		context: ctx,
    	}, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 26 17:50:56 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. pkg/kubelet/container/runtime.go

    	TotalStorageBytes uint64
    }
    
    // Runtime interface defines the interfaces that should be implemented
    // by a container runtime.
    // Thread safety is required from implementations of this interface.
    type Runtime interface {
    	// Type returns the type of the container runtime.
    	Type() string
    
    	// Version returns the version information of the container runtime.
    	Version(ctx context.Context) (Version, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. 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)
Back to top