Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Mi (0.05 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/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)
  5. src/cmd/link/internal/loader/loader_test.go

    		name := fmt.Sprintf("new%d", k+1)
    		mi := ldr.LookupOrCreateSym(name, 0)
    		if mi == 0 {
    			t.Fatalf("LookupOrCreateSym failed for '" + name + "'")
    		}
    		mi = tp.addDataFunc(ldr, mi, pmi)
    		if ldr.SymType(mi) != tp.expKind {
    			t.Errorf("testing Loader.%s: expected kind %s got %s",
    				tp.which, tp.expKind, ldr.SymType(mi))
    		}
    		if !bytes.Equal(ldr.Data(mi), tp.expData) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:09 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. src/internal/profile/merge.go

    	if src == nil {
    		return mapInfo{}
    	}
    
    	if mi, ok := pm.mappingsByID[src.ID]; ok {
    		return mi
    	}
    
    	// Check memoization tables.
    	mk := src.key()
    	if m, ok := pm.mappings[mk]; ok {
    		mi := mapInfo{m, int64(m.Start) - int64(src.Start)}
    		pm.mappingsByID[src.ID] = mi
    		return mi
    	}
    	m := &Mapping{
    		ID:              uint64(len(pm.p.Mapping) + 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 11.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs_test.go

    			},
    			path: "myitcv.io/other",
    			mi:   metaImport{Prefix: "myitcv.io", VCS: "git", RepoRoot: "https://github.com/myitcv/x"},
    		},
    	}
    
    	for _, test := range tests {
    		mi, err := matchGoImport(test.imports, test.path)
    		if mi != test.mi {
    			t.Errorf("unexpected metaImport; got %v, want %v", mi, test.mi)
    		}
    
    		got := err
    		want := test.err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K 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. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    	if src == nil {
    		return mapInfo{}
    	}
    
    	if mi, ok := pm.mappingsByID[src.ID]; ok {
    		return mi
    	}
    
    	// Check memoization tables.
    	mk := src.key()
    	if m, ok := pm.mappings[mk]; ok {
    		mi := mapInfo{m, int64(m.Start) - int64(src.Start)}
    		pm.mappingsByID[src.ID] = mi
    		return mi
    	}
    	m := &Mapping{
    		ID:                     uint64(len(pm.p.Mapping) + 1),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SIDCacheImpl.java

                            for ( int mi = 0; mi < mems.length; mi++ ) {
                                List<jcifs.SID> groups = map.get(mems[ mi ]);
                                if ( groups == null ) {
                                    groups = new ArrayList<>();
                                    map.put(mems[ mi ], groups);
                                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12.6K bytes
    - Viewed (0)
Back to top