Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,904 for RUNTIME (0.14 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. 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)
  7. 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)
  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. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/runtime/Runtime.kt

     * 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 org.gradle.kotlin.dsl.accessors.runtime
    
    import org.gradle.api.Action
    import org.gradle.api.Project
    import org.gradle.api.artifacts.Dependency
    import org.gradle.api.artifacts.ExternalModuleDependency
    import org.gradle.api.artifacts.dsl.DependencyHandler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. src/runtime/runtime-gdb_unix_test.go

    // through a signal handler in a core file
    func TestGdbCoreSignalBacktrace(t *testing.T) {
    	if runtime.GOOS != "linux" {
    		// N.B. This test isn't fundamentally Linux-only, but it needs
    		// to know how to enable/find core files on each OS.
    		t.Skip("Test only supported on Linux")
    	}
    	if runtime.GOARCH != "386" && runtime.GOARCH != "amd64" {
    		// TODO(go.dev/issue/25218): Other architectures use sigreturn
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:05:30 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top