Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for Answers (0.15 sec)

  1. 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)
  2. src/crypto/tls/boring_test.go

    			if ok {
    				t.Errorf("%s: BAD reject (%v)", desc, serverErr)
    			} else {
    				t.Errorf("%s: BAD accept", desc)
    			}
    		}
    	}
    
    	// Run simple basic test with known answers before proceeding to
    	// exhaustive test with computed answers.
    	r1pool := x509.NewCertPool()
    	r1pool.AddCert(R1.cert)
    	testServerCert(t, "basic", r1pool, L2_I.key, [][]byte{L2_I.der, I_R1.der}, true)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. docs/en/docs/help-fastapi.md

    In GitHub, the template will guide you to write the right question so that you can more easily get a good answer, or even solve the problem yourself even before asking. And in GitHub I can make sure I always answer everything, even if it takes some time. I can't personally do that with the chat systems. 😅
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/Traverser.java

     *
     * <p>There are two entry points for creating a {@code Traverser}: {@link
     * #forTree(SuccessorsFunction)} and {@link #forGraph(SuccessorsFunction)}. You should choose one
     * based on your answers to the following questions:
     *
     * <ol>
     *   <li>Is there only one path to any node that's reachable from any start node? (If so, the graph
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/Traverser.java

     *
     * <p>There are two entry points for creating a {@code Traverser}: {@link
     * #forTree(SuccessorsFunction)} and {@link #forGraph(SuccessorsFunction)}. You should choose one
     * based on your answers to the following questions:
     *
     * <ol>
     *   <li>Is there only one path to any node that's reachable from any start node? (If so, the graph
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 30 20:12:45 UTC 2023
    - 19.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    //
    //  3. Enable each change that the pattern says should be enabled.
    //     The [Matcher.Enable] method answers this question for a given change ID.
    //
    //  4. Report each change that the pattern says should be reported.
    //     The [Matcher.Report] method answers this question for a given change ID.
    //     The report consists of one more lines on standard error or standard output
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/symbolizer/symbolizer.go

    	for _, l := range locs {
    		stack, err := obj.SourceLine(l.Address)
    		if err != nil || len(stack) == 0 {
    			// No answers from addr2line.
    			continue
    		}
    
    		l.Line = make([]profile.Line, len(stack))
    		l.IsFolded = false
    		for i, frame := range stack {
    			if frame.Func != "" {
    				m.HasFunctions = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    			//
    			// We asked for recursion, so it should have included all the
    			// answers we need in this one packet.
    			//
    			// Further, RFC 1034 section 4.3.1 says that "the recursive
    			// response to a query will be... The answer to the query,
    			// possibly preface by one or more CNAME RRs that specify
    			// aliases encountered on the way to an answer."
    			//
    			// Therefore, we should be able to assume that we can ignore
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/os/user/lookup_windows.go

    	//
    	// The registry is the most reliable way to find the home path as the user
    	// might have decided to move it outside of the default location,
    	// (e.g. C:\users). Reference:
    	// https://answers.microsoft.com/en-us/windows/forum/windows_7-security/how-do-i-set-a-home-directory-outside-cusers-for-a/aed68262-1bf4-4a4d-93dc-7495193a440f
    	dir, e := findHomeDirInRegistry(uid)
    	if e != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/testing/quick/quick.go

    		}
    	}
    
    	return nil
    }
    
    // CheckEqual looks for an input on which f and g return different results.
    // It calls f and g repeatedly with arbitrary values for each argument.
    // If f and g return different answers, CheckEqual returns a *[CheckEqualError]
    // describing the input and the outputs.
    func CheckEqual(f, g any, config *Config) error {
    	if config == nil {
    		config = &defaultConfig
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top