Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,814 for RUNTIME (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    // TransformFunc is a function to transform and return newObj
    type TransformFunc func(ctx context.Context, newObj runtime.Object, oldObj runtime.Object) (transformedNewObj runtime.Object, err error)
    
    // defaultUpdatedObjectInfo implements UpdatedObjectInfo
    type defaultUpdatedObjectInfo struct {
    	// obj is the updated object
    	obj runtime.Object
    
    	// transformers is an optional list of transforming functions that modify or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/go/internal/gcimporter/gcimporter_test.go

    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    		t.Skipf("gc-built packages not available (compiler = %s)", runtime.Compiler)
    	}
    
    	compileAndImportPkg(t, "issue15920")
    }
    
    func TestIssue20046(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    
    	// This package only handles gc export data.
    	if runtime.Compiler != "gc" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                "org.gradle.usage": "java-runtime"
            ]) {
                artifact("transitive-1.0.jar")
            }
            .variant("sources", [
                    "org.gradle.category": "documentation",
                    "org.gradle.dependency.bundling": "external",
                    "org.gradle.docstype": "sources",
                    "org.gradle.usage": "java-runtime"
            ]) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. pkg/registry/apps/replicaset/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 := scaleFromReplicaSet(obj.(*apps.ReplicaSet))
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/rbac/v1/zz_generated.deepcopy.go

    limitations under the License.
    */
    
    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *AggregationRule) DeepCopyInto(out *AggregationRule) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/storage.go

    	store := &genericregistry.Store{
    		NewFunc:                   func() runtime.Object { return &api.Pod{} },
    		NewListFunc:               func() runtime.Object { return &api.PodList{} },
    		PredicateFunc:             registrypod.MatchPod,
    		DefaultQualifiedResource:  api.Resource("pods"),
    		SingularQualifiedResource: api.Resource("pod"),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/helpers.go

    // TODO: move into serializer/json.
    var UnstructuredJSONScheme runtime.Codec = unstructuredJSONScheme{}
    
    type unstructuredJSONScheme struct{}
    
    const unstructuredJSONSchemeIdentifier runtime.Identifier = "unstructuredJSON"
    
    func (s unstructuredJSONScheme) Decode(data []byte, _ *schema.GroupVersionKind, obj runtime.Object) (runtime.Object, *schema.GroupVersionKind, error) {
    	var err error
    	if obj != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 20:39:55 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

            mavenMetadata.parsedPom.scopes.runtime.assertDependsOn("log4j:log4j:1.2.17")
        }
    
        def "test adding custom variant with dependency mapped to Maven runtime scope, then changed to compile scope"() {
            given:
            buildFile << """
                components.java.addVariantsFromConfiguration(configurations.custom) {
                    mapToMavenScope('runtime')
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	testapigroupv1 "k8s.io/apimachinery/pkg/apis/testapigroup/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/runtime/serializer"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/json"
    	"k8s.io/apimachinery/pkg/util/managedfields"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/strategicpatch"
    	"k8s.io/apimachinery/pkg/util/yaml"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/storage/storage_factory.go

    	encoderDecoratorFn func(runtime.Encoder) runtime.Encoder
    	// decoderDecoratorFn is optional and may wrap the provided decoders (can add new decoders). The order of
    	// returned decoders will be priority for attempt to decode.
    	decoderDecoratorFn func([]runtime.Decoder) []runtime.Decoder
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 20 13:35:58 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top