Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dnsRecords (0.19 sec)

  1. cmd/bucket-handlers.go

    			dns.ErrNoEntriesFound,
    			dns.ErrDomainMissing) {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    		for _, dnsRecords := range dnsBuckets {
    			bucketsInfo = append(bucketsInfo, BucketInfo{
    				Name:    dnsRecords[0].Key,
    				Created: dnsRecords[0].CreationDate,
    			})
    		}
    
    		sort.Slice(bucketsInfo, func(i, j int) bool {
    			return bucketsInfo[i].Name < bucketsInfo[j].Name
    		})
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    			dns.ErrNoEntriesFound,
    			dns.ErrDomainMissing) {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    		for _, dnsRecords := range dnsBuckets {
    			buckets = append(buckets, BucketInfo{
    				Name:    dnsRecords[0].Key,
    				Created: dnsRecords[0].CreationDate,
    			})
    		}
    		sort.Slice(buckets, func(i, j int) bool {
    			return buckets[i].Name < buckets[j].Name
    		})
    	} else {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 77.3K bytes
    - Viewed (0)
  3. api/go1.txt

    pkg syscall (windows-386), type DNSRecord struct
    pkg syscall (windows-386), type DNSRecord struct, Data [40]uint8
    pkg syscall (windows-386), type DNSRecord struct, Dw uint32
    pkg syscall (windows-386), type DNSRecord struct, Length uint16
    pkg syscall (windows-386), type DNSRecord struct, Name *uint16
    pkg syscall (windows-386), type DNSRecord struct, Next *DNSRecord
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top