Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for Pref (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. guava/src/com/google/common/cache/CacheBuilder.java

     *
     * <h2>Prefer <a href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a> over Guava's caching
     * API</h2>
     *
     * <p>The successor to Guava's caching API is <a
     * href="https://github.com/ben-manes/caffeine/wiki">Caffeine</a>. Its API is designed to make it a
     * nearly drop-in replacement. It requires Java 8+, and is not available for Android or GWT/J2CL,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/html/template/escape_test.go

    			`<a href='/search?q=%3cHello%3e'>`,
    		},
    		{
    			"urlFragment",
    			`<a href='/faq#{{.H}}'>`,
    			`<a href='/faq#%3cHello%3e'>`,
    		},
    		{
    			"urlBranch",
    			`<a href="{{if .F}}/foo?a=b{{else}}/bar{{end}}">`,
    			`<a href="/bar">`,
    		},
    		{
    			"urlBranchConflictMoot",
    			`<a href="{{if .T}}/foo?a={{else}}/bar#{{end}}{{.C}}">`,
    			`<a href="/foo?a=%3cCincinnati%3e">`,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  6. tests/test_application.py

                                "content": {
                                    "application/json": {
                                        "schema": {
                                            "$ref": "#/components/schemas/HTTPValidationError"
                                        }
                                    }
                                },
                            },
                        },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.authorization.v1.NonResourceAttributes"
                  }
                ],
                "description": "NonResourceAttributes describes information for a non-resource access request"
              },
              "resourceAttributes": {
                "allOf": [
                  {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  8. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    <tbody>
    <tr align="left">
    <td align="left" width="15" style="width:15px;padding:0;margin:0;line-height:1px;font-size:1px;"></td>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  9. docs/ru/docs/deployment/docker.md

    * <a href="https://hub.docker.com/_/postgres" class="external-link" target="_blank">PostgreSQL</a>
    * <a href="https://hub.docker.com/_/mysql" class="external-link" target="_blank">MySQL</a>
    * <a href="https://hub.docker.com/_/mongo" class="external-link" target="_blank">MongoDB</a>
    * <a href="https://hub.docker.com/_/redis" class="external-link" target="_blank">Redis</a>
    
    и т.п.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				$.each(js.data, function (i, m) {
    					tmp = $("<a />");
    					if($.isFunction(m)) { m = m.call(this, js); }
    					if(typeof m == "string") { tmp.attr('href','#')[ s.html_titles ? "html" : "text" ](m); }
    					else {
    						if(!m.attr) { m.attr = {}; }
    						if(!m.attr.href) { m.attr.href = '#'; }
    						tmp.attr(m.attr)[ s.html_titles ? "html" : "text" ](m.title);
    						if(m.language) { tmp.addClass(m.language); }
    					}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
Back to top