Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for dnsRecords (0.09 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
    		})
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 63.4K 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 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 03 23:11:02 UTC 2024
    - 85.1K 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
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top