Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for Mi (0.03 sec)

  1. pkg/zdsapi/zds.pb.go

    	*x = ZdsHello{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_zdsapi_zds_proto_msgTypes[0]
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *ZdsHello) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*ZdsHello) ProtoMessage() {}
    
    func (x *ZdsHello) ProtoReflect() protoreflect.Message {
    	mi := &file_zdsapi_zds_proto_msgTypes[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. pkg/test/echo/proto/echo.pb.go

    	if protoimpl.UnsafeEnabled {
    		mi := &file_test_echo_proto_echo_proto_msgTypes[0]
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *EchoRequest) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*EchoRequest) ProtoMessage() {}
    
    func (x *EchoRequest) ProtoReflect() protoreflect.Message {
    	mi := &file_test_echo_proto_echo_proto_msgTypes[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  3. pkg/workloadapi/security/authorization.pb.go

    func (x *Authorization) ProtoReflect() protoreflect.Message {
    	mi := &file_workloadapi_security_authorization_proto_msgTypes[0]
    	if protoimpl.UnsafeEnabled && x != nil {
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		if ms.LoadMessageInfo() == nil {
    			ms.StoreMessageInfo(mi)
    		}
    		return ms
    	}
    	return mi.MessageOf(x)
    }
    
    // Deprecated: Use Authorization.ProtoReflect.Descriptor instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.pb.go

    	*x = Address{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_workloadapi_workload_proto_msgTypes[0]
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *Address) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*Address) ProtoMessage() {}
    
    func (x *Address) ProtoReflect() protoreflect.Message {
    	mi := &file_workloadapi_workload_proto_msgTypes[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. pkg/dns/proto/nds.pb.go

    	*x = NameTable{}
    	if protoimpl.UnsafeEnabled {
    		mi := &file_dns_proto_nds_proto_msgTypes[0]
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		ms.StoreMessageInfo(mi)
    	}
    }
    
    func (x *NameTable) String() string {
    	return protoimpl.X.MessageStringOf(x)
    }
    
    func (*NameTable) ProtoMessage() {}
    
    func (x *NameTable) ProtoReflect() protoreflect.Message {
    	mi := &file_dns_proto_nds_proto_msgTypes[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    func (x *ArchConfig) ProtoReflect() protoreflect.Message {
    	mi := &file_pkg_apis_istio_v1alpha1_values_types_proto_msgTypes[0]
    	if protoimpl.UnsafeEnabled && x != nil {
    		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
    		if ms.LoadMessageInfo() == nil {
    			ms.StoreMessageInfo(mi)
    		}
    		return ms
    	}
    	return mi.MessageOf(x)
    }
    
    // Deprecated: Use ArchConfig.ProtoReflect.Descriptor instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/spec/range_int.go

    	}
    
    	var i int
    	var mi MyInt
    	for i := range 10 {
    		_ = i
    	}
    	for i = range 10 {
    		_ = i
    	}
    	for i, j /* ERROR "range over 10 (untyped int constant) permits only one iteration variable" */ := range 10 {
    		_, _ = i, j
    	}
    	for i = range MyInt /* ERROR "cannot use MyInt(10) (constant 10 of type MyInt) as int value in range clause" */ (10) {
    		_ = i
    	}
    	for mi := range MyInt(10) {
    		_ = mi
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:56:00 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. cmd/object-multipart-handlers.go

    	mi, err := objectAPI.GetMultipartInfo(ctx, dstBucket, dstObject, uploadID, dstOpts)
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	_, isEncrypted := crypto.IsEncrypted(mi.UserDefined)
    
    	// Read compression metadata preserved in the init multipart for the decision.
    	_, isCompressed := mi.UserDefined[ReservedMetadataPrefix+"compression"]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  9. docs/pl/docs/help-fastapi.md

    Te dwie czynności **zajmują najwięcej czasu**. To główna praca związana z utrzymaniem FastAPI.
    
    Jeśli możesz mi w tym pomóc, **pomożesz mi utrzymać FastAPI** i zapewnisz że będzie **rozwijać się szybciej i lepiej**. 🚀
    
    ## Dołącz do czatu
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/helpers_linux_test.go

    					input: "128",
    				},
    			},
    			expected: map[int64]int64{2 * Mi: 128},
    		},
    		{
    			name: "2Mi and 4Mi",
    			inputs: []inputStruct{
    				{
    					key:   v1.ResourceHugePagesPrefix + "2Mi",
    					input: "128",
    				},
    				{
    					key:   v1.ResourceHugePagesPrefix + strconv.FormatInt(2*Mi, 10),
    					input: "256",
    				},
    				{
    					key:   v1.ResourceHugePagesPrefix + "4Mi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top