Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,296 for RUNTIME (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/crdserverscheme/unstructured.go

    package crdserverscheme
    
    import (
    	"reflect"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // UnstructuredObjectTyper provides a runtime.ObjectTyper implementation for
    // runtime.Unstructured object based on discovery information.
    type UnstructuredObjectTyper struct {
    }
    
    // NewUnstructuredObjectTyper returns a runtime.ObjectTyper for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 06 18:08:14 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  2. src/runtime/import_test.go

    package runtime_test
    
    import (
    	"fmt"
    	"internal/testenv"
    	"runtime"
    	"testing"
    )
    
    func init() {
    	runtime.FmtSprintf = fmt.Sprintf
    	runtime.TestenvOptimizationOff = testenv.OptimizationOff
    }
    
    func TestInlineUnwinder(t *testing.T) {
    	runtime.XTestInlineUnwinder(t)
    }
    
    func TestSPWrite(t *testing.T) {
    	runtime.XTestSPWrite(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 06 14:45:46 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/runtime/debuglog_test.go

    	runtime.LockOSThread()
    	defer runtime.UnlockOSThread()
    
    	runtime.ResetDebugLog()
    	var longString = strings.Repeat("a", 128)
    	var want strings.Builder
    	for i, j := 0, 0; j < 2*runtime.DebugLogBytes; i, j = i+1, j+len(longString) {
    		runtime.Dlog().I(i).S(longString).End()
    		fmt.Fprintf(&want, "[] %d %s\n", i, longString)
    	}
    	log := runtime.DumpDebugLog()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 16:59:26 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            systemHelper.setupAdminHtmlData(this, runtime);
    
            final Boolean editable = getUserBean()
                    .map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()) || user.hasRole(getActionRole())).orElse(false);
            runtime.registerData("editable", editable);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    type MetadataAccessor interface {
    	APIVersion(obj runtime.Object) (string, error)
    	SetAPIVersion(obj runtime.Object, version string) error
    
    	Kind(obj runtime.Object) (string, error)
    	SetKind(obj runtime.Object, kind string) error
    
    	Namespace(obj runtime.Object) (string, error)
    	SetNamespace(obj runtime.Object, namespace string) error
    
    	Name(obj runtime.Object) (string, error)
    	SetName(obj runtime.Object, name string) error
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. src/runtime/crash_unix_test.go

    		// This may be ncpu < 2 related...
    		t.Skipf("skipping; test fails on %s/%s - see issue #42464", runtime.GOOS, runtime.GOARCH)
    	}
    
    	if runtime.Sigisblocked(int(syscall.SIGQUIT)) {
    		t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196")
    	}
    
    	testenv.MustHaveGoBuild(t)
    
    	if strings.Contains(os.Getenv("GOFLAGS"), "mayMoreStackPreempt") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. src/internal/fuzz/trace.go

    import _ "unsafe" // for go:linkname
    
    //go:linkname libfuzzerTraceCmp1 runtime.libfuzzerTraceCmp1
    //go:linkname libfuzzerTraceCmp2 runtime.libfuzzerTraceCmp2
    //go:linkname libfuzzerTraceCmp4 runtime.libfuzzerTraceCmp4
    //go:linkname libfuzzerTraceCmp8 runtime.libfuzzerTraceCmp8
    
    //go:linkname libfuzzerTraceConstCmp1 runtime.libfuzzerTraceConstCmp1
    //go:linkname libfuzzerTraceConstCmp2 runtime.libfuzzerTraceConstCmp2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 00:12:53 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  8. tensorflow/cc/experimental/libtf/runtime/core/core.cc

    namespace runtime {
    namespace core {
    
    runtime::Runtime Runtime() {
      TaggedValue ctx_capsule;
      TFE_Context* ctx;
      TFE_ContextOptions* ctx_options = TFE_NewContextOptions();
      TFE_ContextOptionsSetDevicePlacementPolicy(ctx_options,
                                                 TFE_DEVICE_PLACEMENT_WARN);
      TF_Status* status = TF_NewStatus();
      ctx = TFE_NewContext(ctx_options, status);
      TF_DeleteStatus(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/tests/runtime_test.cc

    TEST_P(RuntimeTest, CreateHostTensorIncompatibleShape) {
      Runtime runtime = RuntimeTest::GetParam()();
      EXPECT_THAT(runtime.CreateHostTensor<float>({2}, TF_FLOAT, {2.0f}),
                  StatusIs(absl::StatusCode::kInvalidArgument,
                           HasSubstr("Mismatched shape and data size")));
    }
    
    TEST_P(RuntimeTest, CreateHostTensorNonFullyDefinedShapeRaises) {
      Runtime runtime = RuntimeTest::GetParam()();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 09 12:27:54 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/util.go

    package admission
    
    import "k8s.io/apimachinery/pkg/runtime"
    
    type RuntimeObjectInterfaces struct {
    	runtime.ObjectCreater
    	runtime.ObjectTyper
    	runtime.ObjectDefaulter
    	runtime.ObjectConvertor
    	runtime.EquivalentResourceMapper
    }
    
    func NewObjectInterfacesFromScheme(scheme *runtime.Scheme) ObjectInterfaces {
    	return &RuntimeObjectInterfaces{scheme, scheme, scheme, scheme, runtime.NewEquivalentResourceRegistry()}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 18:26:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
Back to top