Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 371 for typeSet (0.15 sec)

  1. pilot/pkg/config/kube/crd/config.go

    	return in.ObjectMeta
    }
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *IstioKind) DeepCopyInto(out *IstioKind) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	out.Spec = in.Spec
    	out.Status = in.Status
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new IstioKind.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/kubeconfig_test.go

    	initCfg := kubeadmapiv1.InitConfiguration{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    			Kind:       "InitConfiguration",
    		},
    		LocalAPIEndpoint: kubeadmapiv1.APIEndpoint{
    			AdvertiseAddress: "1.2.3.4",
    			BindPort:         1234,
    		},
    	}
    	clusterCfg := kubeadmapiv1.ClusterConfiguration{
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: kubeadmapiv1.SchemeGroupVersion.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/godefs.go

    				override[n.Mangle] = s.Name.Name
    			}
    		}
    	}
    
    	// Extend overrides using typedefs:
    	// If we know that C.xxx should format as T
    	// and xxx is a typedef for yyy, make C.yyy format as T.
    	for typ, def := range typedef {
    		if new := override[typ]; new != "" {
    			if id, ok := def.Go.(*ast.Ident); ok {
    				override[id.Name] = new
    			}
    		}
    	}
    
    	// Apply overrides.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/ops.h

        // START_SKIP_DOXYGEN
        template <typename T, bool = std::is_convertible<T, std::string>::value>
        struct RealType {
          typedef tstring type;
        };
    
        template <typename T>
        struct RealType<T, false> {
          typedef T type;
        };
        // END_SKIP_DOXYGEN
    
        TensorProto AsTensorProto() {
          TensorProto tensor_proto;
          if (tensor.NumElements() > 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				var p runtime.Object = param
    				if p != nil && p.GetObjectKind().GroupVersionKind().Empty() {
    					// Make sure param has TypeMeta populated
    					// This is a simple hack to make sure typeMeta is
    					// available to CEL without making copies of objects, etc.
    					p = &wrappedParam{
    						TypeMeta: metav1.TypeMeta{
    							APIVersion: definition.Spec.ParamKind.APIVersion,
    							Kind:       definition.Spec.ParamKind.Kind,
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    #define GO_CGO_PROLOGUE_H
    
    typedef signed char GoInt8;
    typedef unsigned char GoUint8;
    typedef short GoInt16;
    typedef unsigned short GoUint16;
    typedef int GoInt32;
    typedef unsigned int GoUint32;
    typedef long long GoInt64;
    typedef unsigned long long GoUint64;
    typedef GoIntGOINTBITS GoInt;
    typedef GoUintGOINTBITS GoUint;
    typedef size_t GoUintptr;
    typedef float GoFloat32;
    typedef double GoFloat64;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirTypeAndAnnotations.kt

    private fun List<FirTypeRef>.mapToKtType(
        builder: KaSymbolByFirBuilder,
    ): List<KaType> = map { typeRef ->
        builder.typeBuilder.buildKtType(typeRef)
    }
    
    internal fun FirCallableSymbol<*>.returnType(builder: KaSymbolByFirBuilder): KaType =
        builder.typeBuilder.buildKtType(resolvedReturnType)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating ConfigMap: %v", err)
    	}
    	_, err = client.AppsV1().Deployments(metav1.NamespaceSystem).Create(context.TODO(), &apps.Deployment{
    		TypeMeta: metav1.TypeMeta{
    			Kind:       "Deployment",
    			APIVersion: "apps/v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      kubeadmconstants.CoreDNSConfigMap,
    			Namespace: metav1.NamespaceSystem,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *MutatingWebhookConfiguration) DeepCopyInto(out *MutatingWebhookConfiguration) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Webhooks != nil {
    		in, out := &in.Webhooks, &out.Webhooks
    		*out = make([]MutatingWebhook, len(*in))
    		for i := range *in {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // ParamGeneratorInterface<T>. It wraps ParamIteratorInterface<T>
    // and implements the const forward iterator concept.
    template <typename T>
    class ParamIterator {
     public:
      typedef T value_type;
      typedef const T& reference;
      typedef ptrdiff_t difference_type;
    
      // ParamIterator assumes ownership of the impl_ pointer.
      ParamIterator(const ParamIterator& other) : impl_(other.impl_->Clone()) {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top