Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,827 for pref (0.04 sec)

  1. src/net/lookup_plan9.go

    	if err != nil {
    		return nil, handlePlan9DNSError(err, name)
    	}
    	for _, line := range lines {
    		f := getFields(line)
    		if len(f) < 4 {
    			continue
    		}
    		if pref, _, ok := dtoi(f[2]); ok {
    			mx = append(mx, &MX{absDomainName(f[3]), uint16(pref)})
    		}
    	}
    	byPref(mx).sort()
    	return
    }
    
    func (r *Resolver) lookupNS(ctx context.Context, name string) (ns []*NS, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    func (r *MXResource) GoString() string {
    	return "dnsmessage.MXResource{" +
    		"Pref: " + printUint16(r.Pref) + ", " +
    		"MX: " + r.MX.GoString() + "}"
    }
    
    func unpackMXResource(msg []byte, off int) (MXResource, error) {
    	pref, off, err := unpackUint16(msg, off)
    	if err != nil {
    		return MXResource{}, &nestedError{"Pref", err}
    	}
    	var mx Name
    	if _, err := mx.unpack(msg, off); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  3. cmd/globals.go

    	globalNetPerfRX              netPerfRX
    	globalSiteNetPerfRX          netPerfRX
    	globalObjectPerfBucket       = "minio-perf-test-tmp-bucket"
    	globalObjectPerfUserMetadata = "X-Amz-Meta-Minio-Object-Perf" // Clients can set this to bypass S3 API service freeze. Used by object pref tests.
    
    	// MinIO version unix timestamp
    	globalVersionUnix uint64
    
    	// MinIO client
    	globalMinioClient *minio.Client
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. src/net/lookup.go

    		if err != nil {
    			return nil, &DNSError{
    				Err:    "cannot unmarshal DNS message",
    				Name:   name,
    				Server: server,
    			}
    		}
    		mxs = append(mxs, &MX{Host: mx.MX.String(), Pref: mx.Pref})
    
    	}
    	byPref(mxs).sort()
    	return mxs, nil
    }
    
    // goLookupNS returns the NS records for name.
    func (r *Resolver) goLookupNS(ctx context.Context, name string) ([]*NS, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_SWAPOFF                = 529 // { int swapoff(char *name); }
    	SYS_VQUOTACTL              = 530 // { int vquotactl(const char *path, struct plistref *pref); }
    	SYS_LINKAT                 = 531 // { int linkat(int fd1, char *path1, int fd2, char *path2, int flags); }
    	SYS_EACCESS                = 532 // { int eaccess(char *path, int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    	"fixedbugs/bug176.go", // types2 reports all errors (pref: types2)
    	"fixedbugs/bug195.go", // types2 reports slight different errors, and an extra error
    	"fixedbugs/bug412.go", // types2 produces a follow-on error
    
    	"fixedbugs/issue11614.go", // types2 reports an extra error
    	"fixedbugs/issue17038.go", // types2 doesn't report a follow-on error (pref: types2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/net/lookup_test.go

    				break
    			}
    		}
    	}
    }
    
    func mxString(mxs []*MX) string {
    	var buf strings.Builder
    	sep := ""
    	fmt.Fprintf(&buf, "[")
    	for _, mx := range mxs {
    		fmt.Fprintf(&buf, "%s%s:%d", sep, mx.Host, mx.Pref)
    		sep = " "
    	}
    	fmt.Fprintf(&buf, "]")
    	return buf.String()
    }
    
    func nsString(nss []*NS) string {
    	var buf strings.Builder
    	sep := ""
    	fmt.Fprintf(&buf, "[")
    	for _, ns := range nss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  8. cmd/perf-tests.go

    		Downloads:     totalBytesRead,
    		UploadTimes:   uploadTimes,
    		DownloadTimes: downloadTimes,
    		DownloadTTFB:  downloadTTFB,
    		Error:         retError,
    	}, nil
    }
    
    // To collect RX stats during "mc support perf net"
    // RXSample holds the RX bytes for the duration between
    // the last peer to connect and the first peer to disconnect.
    // This is to improve the RX throughput accuracy.
    type netPerfRX struct {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/mod/rsc.io_quote_v1.5.3-pre1.txt

    rsc.io/quote@v1.5.3-pre1
    
    -- .mod --
    module "rsc.io/quote"
    
    require "rsc.io/sampler" v1.3.0
    -- .info --
    {"Version":"v1.5.3-pre1","Name":"2473dfd877c95382420e47686aa9076bf58c79e0","Short":"2473dfd877c9","Time":"2018-06-28T00:32:53Z"}
    -- buggy/buggy_test.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package buggy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/XRef.java

    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    
    /**
     * Models cross-reference (x-ref) info about {@link GrammarFileMetadata grammar files} such as {@link #filesByPath}, {@link #filesByExportVocab} and {@link #filesByClassName}.
     */
    public class XRef {
        private final Hierarchy antlrHierarchy;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top