Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 6,541 for RUNTIME (0.17 sec)

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

    #define TENSORFLOW_CC_EXPERIMENTAL_LIBTF_RUNTIME_CORE_CORE_H_
    
    #include "tensorflow/cc/experimental/libtf/runtime/runtime.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    namespace core {
    
    // Instantiate a Core Runtime.
    Runtime Runtime();
    
    }  // namespace core
    }  // namespace runtime
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 31 00:34:05 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  2. src/runtime/proc_test.go

    }
    
    func TestSchedLocalQueue(t *testing.T) {
    	runtime.RunSchedLocalQueueTest()
    }
    
    func TestSchedLocalQueueSteal(t *testing.T) {
    	runtime.RunSchedLocalQueueStealTest()
    }
    
    func TestSchedLocalQueueEmpty(t *testing.T) {
    	if runtime.NumCPU() == 1 {
    		// Takes too long and does not trigger the race.
    		t.Skip("skipping on uniprocessor")
    	}
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(4))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/base/public/runtime_builder.h

      // If `use_tfrt` is true, we will use the new Tensorflow Runtime
      // (https://blog.tensorflow.org/2020/04/tfrt-new-tensorflow-runtime.html) as
      // our runtime implementation.
      RuntimeBuilder& SetUseTFRT(bool use_tfrt);
    
      // Build a Tensorflow Runtime.
      //
      // Params:
      //  status - Set to OK on success and an appropriate error on failure.
      // Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/DependencyClassPathProviderTest.groovy

                "gradle-worker-main-runtime",
                "gradle-launcher-runtime",
                "gradle-cli-runtime",
                "gradle-workers-runtime",
                "gradle-dependency-management-runtime",
                "gradle-plugin-use-runtime",
                "gradle-tooling-api-builders-runtime",
                "gradle-configuration-cache-runtime",
                "gradle-unit-test-fixtures-runtime",
                "plugin1-runtime",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/deadlock.go

    	}()
    	i := 0
    	println("t2")
    	runtime.SetFinalizer(&i, func(p *int) {})
    	println("t3")
    	runtime.GC()
    	println("t4")
    	runtime.Goexit()
    }
    
    func GoNil() {
    	defer func() {
    		recover()
    	}()
    	var f func()
    	go f()
    	select {}
    }
    
    func MainGoroutineID() {
    	panic("test")
    }
    
    func NoHelperGoroutines() {
    	i := 0
    	runtime.SetFinalizer(&i, func(p *int) {})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 27 20:44:24 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	runtimeserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/runtime/serializer/json"
    	"k8s.io/apimachinery/pkg/runtime/serializer/protobuf"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    type InstallFunc func(scheme *runtime.Scheme)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    type Serializer struct {
    	meta    MetaFactory
    	options SerializerOptions
    	creater runtime.ObjectCreater
    	typer   runtime.ObjectTyper
    
    	identifier runtime.Identifier
    }
    
    // Serializer implements Serializer
    var _ runtime.Serializer = &Serializer{}
    var _ recognizer.RecognizingDecoder = &Serializer{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/splice_test.go

    import (
    	"bytes"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func TestSpliceBuffer(t *testing.T) {
    	testBytes0 := []byte{0x01, 0x02, 0x03, 0x04}
    	testBytes1 := []byte{0x04, 0x03, 0x02, 0x02}
    
    	testCases := []struct {
    		name string
    		run  func(sb runtime.Splice, buf *bytes.Buffer)
    	}{
    		{
    			name: "Basic Write",
    			run: func(sb runtime.Splice, buf *bytes.Buffer) {
    				sb.Write(testBytes0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/go/build/deps_test.go

    	# to cgoPackages in cmd/dist/test.go as well.
    	RUNTIME
    	< C
    	< runtime/cgo
    	< CGO
    	< runtime/msan, runtime/asan;
    
    	# runtime/race
    	NONE < runtime/race/internal/amd64v1;
    	NONE < runtime/race/internal/amd64v3;
    	CGO, runtime/race/internal/amd64v1, runtime/race/internal/amd64v3 < runtime/race;
    
    	# Bulk of the standard library must not use cgo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. src/runtime/race/testdata/finalizer_test.go

    // license that can be found in the LICENSE file.
    
    package race_test
    
    import (
    	"runtime"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestNoRaceFin(t *testing.T) {
    	c := make(chan bool)
    	go func() {
    		x := new(string)
    		runtime.SetFinalizer(x, func(x *string) {
    			*x = "foo"
    		})
    		*x = "bar"
    		c <- true
    	}()
    	<-c
    	runtime.GC()
    	time.Sleep(100 * time.Millisecond)
    }
    
    var finVar struct {
    	sync.Mutex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 22:09:38 UTC 2017
    - 1K bytes
    - Viewed (0)
Back to top