Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for Answers (0.16 sec)

  1. src/net/dnsclient_unix_test.go

    				r.Answers[0].Body = &dnsmessage.AAAAResource{AAAA: TestAddr6}
    			case dnsmessage.TypeTXT:
    				r.Answers[0].Body = &dnsmessage.TXTResource{TXT: []string{"."}}
    			case dnsmessage.TypeMX:
    				r.Answers[0].Body = &dnsmessage.MXResource{
    					MX: dnsmessage.MustNewName("go.dev."),
    				}
    			case dnsmessage.TypeNS:
    				r.Answers[0].Body = &dnsmessage.NSResource{
    					NS: dnsmessage.MustNewName("go.dev."),
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. test/ken/complit.go

    			test("mc[i][j]", mc[i][j]);
    			test("mm[i][j]", mm[i][j]);
    		}
    	}
    
    }
    
    var	ref	= 0;
    
    func
    test(xs string, x int) {
    
    	if ref >= len(answers) {
    		println(xs, x);
    		return;
    	}
    
    	if x != answers[ref] {
    		println(xs, "is", x, "should be", answers[ref])
    	}
    	ref++;
    }
    
    
    var	a	= [3]int{1001, 1002, 1003}
    var	s	= S{1101, 1102, 1103}
    var	c	= []int{1201, 1202, 1203}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.3K bytes
    - Viewed (0)
  3. src/math/rand/v2/example_test.go

    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    	fmt.Println("Magic 8-Ball says:", answers[rand.IntN(len(answers))])
    }
    
    // This example shows the use of each of the methods on a *Rand.
    // The use of the global functions is the same, without the receiver.
    func Example_rand() {
    	// Create and seed the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 30 17:09:26 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. src/math/rand/example_test.go

    		"Cannot predict now",
    		"Concentrate and ask again",
    		"Don't count on it",
    		"My reply is no",
    		"My sources say no",
    		"Outlook not so good",
    		"Very doubtful",
    	}
    	fmt.Println("Magic 8-Ball says:", answers[rand.Intn(len(answers))])
    }
    
    // This example shows the use of each of the methods on a *Rand.
    // The use of the global functions is the same, without the receiver.
    func Example_rand() {
    	// Create and seed the generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 16:24:57 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. pkg/dns/client/dns.go

    	answers := make([]dns.RR, len(ips))
    	for i, ip := range ips {
    		r := new(dns.AAAA)
    		r.Hdr = dns.RR_Header{Name: host, Rrtype: dns.TypeAAAA, Class: dns.ClassINET, Ttl: defaultTTLInSeconds}
    		r.AAAA = ip.AsSlice()
    		answers[i] = r
    	}
    	return answers
    }
    
    func cname(host string, targetHost string) []dns.RR {
    	answer := new(dns.CNAME)
    	answer.Hdr = dns.RR_Header{
    		Name:   host,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	if len(m.Questions) > 0 {
    		s += m.Questions[0].GoString()
    		for _, q := range m.Questions[1:] {
    			s += ", " + q.GoString()
    		}
    	}
    	s += "}, Answers: []dnsmessage.Resource{"
    	if len(m.Answers) > 0 {
    		s += m.Answers[0].GoString()
    		for _, a := range m.Answers[1:] {
    			s += ", " + a.GoString()
    		}
    	}
    	s += "}, Authorities: []dnsmessage.Resource{"
    	if len(m.Authorities) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  7. docs/uk/docs/fastapi-people.md

    {% for user in people.maintainers %}
    
    <div class="user"><a href="{{ user.url }}" target="_blank"><div class="avatar-wrapper"><img src="{{ user.avatarUrl }}"/></div><div class="title">@{{ user.login }}</div></a> <div class="count">Answers: {{ user.answers }}</div><div class="count">Pull Requests: {{ user.prs }}</div></div>
    {% endfor %}
    
    </div>
    {% endif %}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static org.mockito.Answers.CALLS_REAL_METHODS;
    import static org.mockito.Mockito.doReturn;
    import static org.mockito.Mockito.mock;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ForwardingObject;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTester.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static org.mockito.Answers.CALLS_REAL_METHODS;
    import static org.mockito.Mockito.doReturn;
    import static org.mockito.Mockito.mock;
    
    import com.google.common.base.Function;
    import com.google.common.collect.ForwardingObject;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 05 19:41:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. test/noinit.go

    var ca = [][3]int{[3]int{4001, 4002, 4003}, [3]int{4004, 4005, 4006}, [3]int{4007, 4008, 4009}}
    var cs = []S{S{4101, 4102, 4103}, S{4104, 4105, 4106}, S{4107, 4108, 4109}}
    
    var answers = [...]int{
    	// s
    	1101, 1102, 1103,
    
    	// ss
    	3101, 3102, 3103,
    	3104, 3105, 3106,
    	3107, 3108, 3109,
    
    	// [0]
    	1001, 1201, 1301,
    	2101, 2102, 2103,
    	4101, 4102, 4103,
    	5101, 5102, 5103,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
Back to top