Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 273 for Pref (0.07 sec)

  1. src/net/lookup_windows_test.go

    		}
    		expected, err := nslookupMX(server)
    		if err != nil {
    			t.Skipf("skipping failed nslookup %s test: %s", server, err)
    		}
    		byPrefAndHost := func(a, b *MX) int {
    			if r := cmp.Compare(a.Pref, b.Pref); r != 0 {
    				return r
    			}
    			return strings.Compare(a.Host, b.Host)
    		}
    		slices.SortFunc(expected, byPrefAndHost)
    		slices.SortFunc(mx, byPrefAndHost)
    		if !reflect.DeepEqual(expected, mx) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. src/net/dnsclient.go

    type MX struct {
    	Host string
    	Pref uint16
    }
    
    // byPref sorts MX records by preference
    type byPref []*MX
    
    // sort reorders MX records as specified in RFC 5321.
    func (s byPref) sort() {
    	for i := range s {
    		j := randIntn(i + 1)
    		s[i], s[j] = s[j], s[i]
    	}
    	slices.SortFunc(s, func(a, b *MX) int {
    		return cmp.Compare(a.Pref, b.Pref)
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. README.md

    ---
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/additional-responses.md

    To see what exactly you can include in the responses, you can check these sections in the OpenAPI specification:
    
    * <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#responsesObject" class="external-link" target="_blank">OpenAPI Responses Object</a>, it includes the `Response Object`.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    		return nil, nil
    	}
    	return []string{claimParametersReferenceKeyFunc(parameters.GeneratedFrom)}, nil
    }
    
    func classParametersReferenceKeyFunc(ref *resourcev1alpha2.ResourceClassParametersReference) string {
    	return ref.APIGroup + "/" + ref.Kind + "/" + ref.Namespace + "/" + ref.Name
    }
    
    // classParametersGeneratedFromIndexFunc is an index function that returns other resource keys
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/dependency_management_basics.html">6. Dependency Management Basics</a></li>
                            <li><a href="../userguide/task_basics.html">7. Task Basics</a></li>
                            <li><a href="../userguide/plugin_basics.html">8. Plugins Basics</a></li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/main/resources/footer.html

                        <li itemprop="name"><a href="/release-notes.html" itemprop="url">Release Notes</a></li>
                        <li itemprop="name"><a href="/dsl/" itemprop="url">Groovy DSL</a></li>
                        <li itemprop="name"><a href="/kotlin-dsl/" itemprop="url">Kotlin DSL</a></li>
                        <li itemprop="name"><a href="/javadoc/" itemprop="url">Javadoc</a></li>
                    </ul>
                </div>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top