Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,814 for RUNTIME (0.11 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

            } else {
                resolve.expectGraph {
                    root(":", ":test:") {
                        edge('org:test:1.0', 'org:test:1.0')
                        module('org:test:1.0') {
                            maybeByConflictResolution()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/runtime/os_windows.go

    //go:cgo_import_dynamic runtime._CloseHandle CloseHandle%1 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateEventA CreateEventA%4 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateIoCompletionPort CreateIoCompletionPort%4 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateThread CreateThread%6 "kernel32.dll"
    //go:cgo_import_dynamic runtime._CreateWaitableTimerA CreateWaitableTimerA%3 "kernel32.dll"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	createNewObject(requestContext context.Context) (runtime.Object, error)
    }
    
    type jsonPatcher struct {
    	*patcher
    
    	fieldManager *managedfields.FieldManager
    }
    
    func (p *jsonPatcher) applyPatchToCurrentObject(requestContext context.Context, currentObject runtime.Object) (runtime.Object, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. src/runtime/gc_test.go

    func TestUserForcedGC(t *testing.T) {
    	// Test that runtime.GC() triggers a GC even if GOGC=off.
    	defer debug.SetGCPercent(debug.SetGCPercent(-1))
    
    	var ms1, ms2 runtime.MemStats
    	runtime.ReadMemStats(&ms1)
    	runtime.GC()
    	runtime.ReadMemStats(&ms2)
    	if ms1.NumGC == ms2.NumGC {
    		t.Fatalf("runtime.GC() did not trigger GC")
    	}
    	if ms1.NumForcedGC == ms2.NumForcedGC {
    		t.Fatalf("runtime.GC() was not accounted in NumForcedGC")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. pkg/registry/core/namespace/storage/storage.go

    }
    
    func (r *REST) New() runtime.Object {
    	return r.store.New()
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	r.store.Destroy()
    }
    
    func (r *REST) NewList() runtime.Object {
    	return r.store.NewList()
    }
    
    func (r *REST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	return r.store.List(ctx, options)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    	"github.com/google/go-cmp/cmp"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	runtimetesting "k8s.io/apimachinery/pkg/runtime/testing"
    	"k8s.io/apimachinery/pkg/util/diff"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    type testConversions struct {
    	internalToExternalCalls int
    	externalToInternalCalls int
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	eventBuffer runtime.Splice
    
    	currentEmbeddedIdentifier runtime.Identifier
    	identifiers               map[watch.EventType]runtime.Identifier
    }
    
    func newWatchEncoder(ctx context.Context, kind schema.GroupVersionKind, embeddedEncoder runtime.Encoder, encoder runtime.Encoder, framer io.Writer) *watchEncoder {
    	return &watchEncoder{
    		ctx:             ctx,
    		kind:            kind,
    		embeddedEncoder: embeddedEncoder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/rest/rest.go

    	// This object must be a pointer type for use with Codec.DecodeInto([]byte, runtime.Object)
    	NewList() runtime.Object
    	// List selects resources in the storage which match to the selector. 'options' can be nil.
    	List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
    	// TableConvertor ensures all list implementers also implement table conversion
    	TableConvertor
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  10. pkg/api/testing/serialization_test.go

    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/conversion"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer/streaming"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	"k8s.io/kubernetes/pkg/apis/apps"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top