Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,814 for RUNTIME (0.22 sec)

  1. pkg/controlplane/reconcilers/lease_test.go

    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/apitesting"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apiserver/pkg/storage"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/storage/storagebackend/factory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 28.7K bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/storage/storage.go

    }
    
    func (r *ScaleREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
    	return r.store.ConvertToTable(ctx, object, tableOptions)
    }
    
    func toScaleCreateValidation(f rest.ValidateObjectFunc) rest.ValidateObjectFunc {
    	return func(ctx context.Context, obj runtime.Object) error {
    		scale, err := scaleFromDeployment(obj.(*apps.Deployment))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportVariantDetailsIntegrationTest.groovy

                "org.gradle.jvm.version": of(JavaVersion.current().majorVersion, JavaVersion.current().majorVersion),
                "org.gradle.libraryelements": of("jar", "jar"),
                "org.gradle.usage": of("java-runtime", "java-runtime"),
                "org.gradle.jvm.environment": of("", "standard-jvm"),
            ])}
    
    project :c
    \\--- runtimeClasspath"""
        }
    
        def "shows all variant details for compileClasspath"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/ProcessInstrumentationInStaticGroovyIntegrationTest.groovy

            // Runtime.exec() overloads
            fromString()       | "Runtime.getRuntime().exec(command)"                                                  | ""                | ""
            fromStringArray()  | "Runtime.getRuntime().exec(command)"                                                  | ""                | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/quota/v1/generic/evaluator.go

    type ListFuncByNamespace func(namespace string) ([]runtime.Object, error)
    
    // MatchesScopeFunc knows how to evaluate if an object matches a scope
    type MatchesScopeFunc func(scope corev1.ScopedResourceSelectorRequirement, object runtime.Object) (bool, error)
    
    // UsageFunc knows how to measure usage associated with an object
    type UsageFunc func(object runtime.Object) (corev1.ResourceList, error)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. pkg/registry/core/replicationcontroller/storage/storage.go

    }
    
    func (r *ScaleREST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error) {
    	return r.store.ConvertToTable(ctx, object, tableOptions)
    }
    
    func toScaleCreateValidation(f rest.ValidateObjectFunc) rest.ValidateObjectFunc {
    	return func(ctx context.Context, obj runtime.Object) error {
    		return f(ctx, scaleFromRC(obj.(*api.ReplicationController)))
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                root(":", "org.test:test:1.9") {
                    module("org:platform:1.0") {
                        variant("runtime", [
                            'org.gradle.category': 'platform',
                            'org.gradle.status': 'release',
                            'org.gradle.usage': 'java-runtime'])
                        noArtifacts()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. pkg/controlplane/reconcilers/instancecount_test.go

    		testName          string
    		serviceName       string
    		ip                string
    		endpointPorts     []corev1.EndpointPort
    		additionalMasters int
    		initialState      []runtime.Object
    		expectUpdate      []runtime.Object
    		expectCreate      []runtime.Object
    	}{
    		{
    			testName:    "existing endpoints extra service ports missing port no update",
    			serviceName: "foo",
    			ip:          "1.2.3.4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:24 UTC 2022
    - 14K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/generic_test.go

    	}
    }
    
    func TestRelisting(t *testing.T) {
    	testPleg := newTestGenericPLEG()
    	pleg, runtime := testPleg.pleg, testPleg.runtime
    	ch := pleg.Watch()
    	// The first relist should send a PodSync event to each pod.
    	runtime.AllPodList = []*containertest.FakePod{
    		{Pod: &kubecontainer.Pod{
    			ID: "1234",
    			Containers: []*kubecontainer.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. src/runtime/traceback_test.go

    //go:noinline
    func testTracebackGenericFn[T any](buf []byte) int {
    	return runtime.Stack(buf[:], false)
    }
    
    func testTracebackGenericFnInlined[T any](buf []byte) int {
    	return runtime.Stack(buf[:], false)
    }
    
    type testTracebackGenericTyp[P any] struct{ x P }
    
    //go:noinline
    func (t testTracebackGenericTyp[P]) M(buf []byte) int {
    	return runtime.Stack(buf[:], false)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 22.9K bytes
    - Viewed (0)
Back to top