Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,565 for runtime2 (0.13 sec)

  1. pkg/kubelet/cadvisor/helpers_linux.go

    )
    
    // imageFsInfoProvider knows how to translate the configured runtime
    // to its file system label for images.
    type imageFsInfoProvider struct {
    	runtimeEndpoint string
    }
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *imageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	alias("internal/runtime/atomic", "Loadint32", "internal/runtime/atomic", "Load", all...)
    	alias("internal/runtime/atomic", "Loadint64", "internal/runtime/atomic", "Load64", all...)
    	alias("internal/runtime/atomic", "Loaduintptr", "internal/runtime/atomic", "Load", p4...)
    	alias("internal/runtime/atomic", "Loaduintptr", "internal/runtime/atomic", "Load64", p8...)
    	alias("internal/runtime/atomic", "Loaduint", "internal/runtime/atomic", "Load", p4...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    A Java library, for example, exposes two variants (API and runtime) which provide the _same capability_.
    As a consequence, it is an error to have both the _API_ and _runtime_ of a single component in a dependency graph.
    
    However, imagine that you need the _runtime_ and the _test fixtures runtime_ of a component.
    Then it is allowed as long as the _runtime_ and _test fixtures runtime_ variant of the library declare different capabilities.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts

    Paul Merlin <******@****.***> 1696347120 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 03 15:32:00 UTC 2023
    - 652 bytes
    - Viewed (0)
  5. pkg/kubelet/cadvisor/helpers_unsupported.go

    limitations under the License.
    */
    
    package cadvisor
    
    import "errors"
    
    type unsupportedImageFsInfoProvider struct{}
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *unsupportedImageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    	return "", errors.New("unsupported")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/cc/experimental/libtf/tests/runtime_test.h

    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    
    typedef Runtime (*RuntimeFn)();
    
    class RuntimeTest : public ::testing::TestWithParam<RuntimeFn> {};
    
    }  // namespace runtime
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 15:05:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  7. src/internal/testenv/testenv_notwin.go

    package testenv
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	"runtime"
    )
    
    func hasSymlink() (ok bool, reason string) {
    	switch runtime.GOOS {
    	case "plan9":
    		return false, ""
    	case "android", "wasip1":
    		// For wasip1, some runtimes forbid absolute symlinks,
    		// or symlinks that escape the current working directory.
    		// Perform a simple test to see whether the runtime
    		// supports symlinks or not. If we get a permission
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 05:22:00 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. test/codegen/alloc.go

    // introduce a call to runtime.newobject.
    
    package codegen
    
    func zeroAllocNew1() *struct{} {
    	// 386:-`CALL\truntime\.newobject`
    	// amd64:-`CALL\truntime\.newobject`
    	// arm:-`CALL\truntime\.newobject`
    	// arm64:-`CALL\truntime\.newobject`
    	return new(struct{})
    }
    
    func zeroAllocNew2() *[0]int {
    	// 386:-`CALL\truntime\.newobject`
    	// amd64:-`CALL\truntime\.newobject`
    	// arm:-`CALL\truntime\.newobject`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 26 23:08:15 UTC 2019
    - 902 bytes
    - Viewed (0)
  9. src/runtime/env_test.go

    	// attempt to reuse existing envs backing array.
    	want := runtime.GOROOT()
    	runtime.SetEnvs(append(envs[:0], "GOROOT="+want))
    
    	if got := runtime.GOROOT(); got != want {
    		t.Errorf(`initial runtime.GOROOT()=%q, want %q`, got, want)
    	}
    	if err := syscall.Setenv("GOROOT", "/os"); err != nil {
    		t.Fatal(err)
    	}
    	if got := runtime.GOROOT(); got != want {
    		t.Errorf(`after setenv runtime.GOROOT()=%q, want %q`, got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 19 11:28:19 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  10. tensorflow/cc/saved_model/experimental/tests/saved_model_api_test.cc

      }
    
      builder.SetUseTFRT(use_tfrt);
      std::unique_ptr<Runtime> runtime = builder.Build(&status);
      ASSERT_TRUE(status.ok()) << status.message();
    
      std::string model_dir = SavedModelPath("VarsAndArithmeticObjectGraph");
      std::unordered_set<std::string> tags = {"serve"};
      std::unique_ptr<SavedModelAPI> model =
          SavedModelAPI::Load(model_dir, *runtime, &status, &tags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 14 23:59:14 UTC 2020
    - 3.5K bytes
    - Viewed (0)
Back to top