Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,583 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

    	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
    
    	// Public key for subnet confidential information
    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. 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)
  9. pkg/kubelet/container/ref.go

    		// start (like the pod infra container). This is not a good way, ugh.
    		fieldPath = ImplicitContainerPrefix + container.Name
    	}
    	ref, err := ref.GetPartialReference(legacyscheme.Scheme, pod, fieldPath)
    	if err != nil {
    		return nil, err
    	}
    	return ref, nil
    }
    
    // fieldPath returns a fieldPath locating container within pod.
    // Returns an error if the container isn't part of the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 00:55:30 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. src/site/site.xml

          <!--item name="FAQ" href="faq.html"/-->
          <item name="License" href="http://www.apache.org/licenses/"/>
          <item name="Download" href="/download.html"/>
        </menu>
    
        <menu inherit="bottom" name="Descriptors Reference">
          <item name="POM" href="./maven-model/maven.html"/>
          <item name="Settings" href="./maven-settings/settings.html"/>
          <item name="Toolchains" href="./maven-core/toolchains.html"/>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top