Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 237 for RUNTIME (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/apimachinery/pkg/watch"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/types.gen.go

    	default:
    		return fmt.Errorf("unsupported type: %v", typ)
    	}
    }
    
    var translationMap = map[config.GroupVersionKind]func(r runtime.Object) config.Config{
    	gvk.AuthorizationPolicy: func(r runtime.Object) config.Config {
    		obj := r.(*apiistioioapisecurityv1beta1.AuthorizationPolicy)
    		return config.Config{
    			Meta: config.Meta{
    				GroupVersionKind:  gvk.AuthorizationPolicy,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: configuration: | {} vm_config: runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.metadata_exchange --- apiVersion: networking.istio.io/v1alpha3 kind: EnvoyFilter metadata: name: metadata-exchange-1.7-1-7-6 namespace: istio-system labels: istio.io/rev: 1-7-6 spec: configPatches:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		return string(buffer[:zb]), nil
    	}
    	// __errno()
    	errno := int(*(*int32)(unsafe.Pointer(runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___ERRNO<<4,
    		[]uintptr{}))))
    	// __errno2()
    	errno2 := int(runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS___ERRNO2<<4,
    		[]uintptr{}))
    	// strerror_r()
    	ret = runtime.CallLeFuncByPtr(runtime.XplinkLibvec+SYS_STRERROR_R<<4,
    		[]uintptr{uintptr(errno), uintptr(unsafe.Pointer(&buffer[0])), 1024})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: configuration: "@type": "type.googleapis.com/google.protobuf.StringValue" value: | {} vm_config: runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.metadata_exchange - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.8.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" patch:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.filters.http.wasm.v3.Wasm value: config: configuration: "@type": "type.googleapis.com/google.protobuf.StringValue" value: | {} vm_config: runtime: envoy.wasm.runtime.null code: local: inline_string: envoy.wasm.metadata_exchange - applyTo: HTTP_FILTER match: context: SIDECAR_OUTBOUND proxy: proxyVersion: '^1\.10.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" patch:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	// Simulate a conflicting update in the middle of delete.
    	validateAllWithUpdate := func(_ context.Context, _ runtime.Object) error {
    		validateCount++
    		if validateCount > 1 {
    			return nil
    		}
    		if err := store.GuaranteedUpdate(ctx, key, updatedPod, false, nil,
    			storage.SimpleUpdate(func(obj runtime.Object) (runtime.Object, error) {
    				pod := obj.(*example.Pod)
    				pod.ObjectMeta.Labels = map[string]string{"foo": "bar"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    		canASan = testenv.HasCGO() && platform.ASanSupported(runtime.GOOS, runtime.GOARCH)
    		canRace = testenv.HasCGO() && platform.RaceDetectorSupported(runtime.GOOS, runtime.GOARCH)
    		// The race detector doesn't work on Alpine Linux:
    		// golang.org/issue/14481
    		// gccgo does not support the race detector.
    		if isAlpineLinux() || runtime.Compiler == "gccgo" {
    			canRace = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/defaults_test.go

    		return true
    	default:
    		return false
    	}
    }
    
    func roundTrip(t *testing.T, obj runtime.Object) runtime.Object {
    	codec := legacyscheme.Codecs.LegacyCodec(corev1.SchemeGroupVersion)
    	data, err := runtime.Encode(codec, obj)
    	if err != nil {
    		t.Errorf("%v\n %#v", err, obj)
    		return nil
    	}
    	obj2, err := runtime.Decode(codec, data)
    	if err != nil {
    		t.Errorf("%v\nData: %s\nSource: %#v", err, string(data), obj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    			if addr == 0 {
    				println("runtime: found bad iterator")
    			}
    			if addr != x+i {
    				print("runtime: addr=", hex(addr), " x+i=", hex(x+i), "\n")
    				bad = true
    			}
    		}
    	}
    	if !bad {
    		var addr uintptr
    		tp, addr = tp.next(x + span.elemsize)
    		if addr == 0 {
    			return
    		}
    		println("runtime: extra pointer:", hex(addr))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top