Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,693 for RUNTIME (0.33 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                .configuration("runtime")
                .configuration("other")
                .configuration("default")
                .dependsOn(m1, conf: "compile->default")
                .dependsOn(m2, conf: "runtime->default")
                .dependsOn(inDefault, conf: "*,!compile,!runtime")
                .artifact(name: "compile", conf: "compile")
                .artifact(name: "runtime", conf: "runtime")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. src/runtime/metrics_test.go

    			name: "runtime.GoroutineProfile",
    			fn: func(t *testing.T) {
    				var s [1]runtime.StackRecord
    				runtime.GoroutineProfile(s[:])
    			},
    		},
    		{
    			name: "runtime.ReadMemStats",
    			fn: func(t *testing.T) {
    				var mstats runtime.MemStats
    				runtime.ReadMemStats(&mstats)
    			},
    		},
    		{
    			name: "runtime.Stack",
    			fn: func(t *testing.T) {
    				var b [64]byte
    				runtime.Stack(b[:], true)
    			},
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/test/testx.go

    // This file contains //export directives on Go functions
    // and so it must NOT contain C definitions (only declarations).
    // See test.go for C definitions.
    
    package cgotest
    
    import (
    	"runtime"
    	"runtime/cgo"
    	"runtime/debug"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    /*
    // threads
    extern void doAdd(int, int);
    extern int callGoInCThread(int);
    
    // issue 1328
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. src/internal/testenv/testenv.go

    	if !platform.BuildModeSupported(runtime.Compiler, buildmode, runtime.GOOS, runtime.GOARCH) {
    		t.Skipf("skipping test: build mode %s on %s/%s is not supported by the %s compiler", buildmode, runtime.GOOS, runtime.GOARCH, runtime.Compiler)
    	}
    }
    
    // HasSymlink reports whether the current system can use os.Symlink.
    func HasSymlink() bool {
    	ok, _ := hasSymlink()
    	return ok
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoryInteractionDependencyResolveIntegrationTest.groovy

            if (testVariant == 'runtime' || testVariant == 'default') {
                // the runtime variant is supposed to include everything
                return true
            }
            if (testVariant == 'api' && repoType == 'ivy') {
                // classic ivy metadata interpretation does not honor api/runtime separation
                return true
            }
            return false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. pkg/config/schema/kubeclient/resources.gen.go

    package kubeclient
    
    import (
    	"context"
    	"fmt"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/watch"
    	"k8s.io/client-go/tools/cache"
    
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube/informerfactory"
    	ktypes "istio.io/istio/pkg/kube/kubetypes"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    	// the media type this watch is being served with
    	MediaType string
    	// used to frame the watch stream
    	Framer runtime.Framer
    	// used to encode the watch stream event itself
    	Encoder runtime.Encoder
    	// used to encode the nested object in the watch stream
    	EmbeddedEncoder runtime.Encoder
    
    	MemoryAllocator      runtime.MemoryAllocator
    	TimeoutFactory       TimeoutFactory
    	ServerShuttingDownCh <-chan struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top