Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for Answers (0.31 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. 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)
  3. docs/en/data/people.yml

    maintainers:
    - login: tiangolo
      answers: 1885
      prs: 577
      avatarUrl: https://avatars.githubusercontent.com/u/1326112?u=740f11212a731f56798f558ceddb0bd07642afa7&v=4
      url: https://github.com/tiangolo
    experts:
    - login: Kludex
      count: 608
      avatarUrl: https://avatars.githubusercontent.com/u/7353520?u=62adc405ef418f4b6c8caa93d3eb8ab107bc4927&v=4
      url: https://github.com/Kludex
    - login: dmontagu
      count: 241
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:09:53 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	case "[]string", "[]*string":
    		return "string"
    	case "[]int32", "[]*int32":
    		return "integer"
    
    	default:
    		return typeName
    	}
    }
    
    // defaultStorageMetadata provides default answers to rest.StorageMetadata.
    type defaultStorageMetadata struct{}
    
    // defaultStorageMetadata implements rest.StorageMetadata
    var _ rest.StorageMetadata = defaultStorageMetadata{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    const (
    	CMPlt = Cmp(-1)
    	CMPeq = Cmp(0)
    	CMPgt = Cmp(1)
    )
    
    // Compare compares types for purposes of the SSA back
    // end, returning a Cmp (one of CMPlt, CMPeq, CMPgt).
    // The answers are correct for an optimizer
    // or code generator, but not necessarily typechecking.
    // The order chosen is arbitrary, only consistency and division
    // into equivalence classes (Types that compare CMPeq) matters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/time/time.go

    			d1 >>= 1
    		}
    		r = Duration(u0)
    	}
    
    	if neg && r != 0 {
    		// If input was negative and not an exact multiple of d, we computed q, r such that
    		//	q*d + r = -t
    		// But the right answers are given by -(q-1), d-r:
    		//	q*d + r = -t
    		//	-q*d - r = t
    		//	-(q-1)*d + (d - r) = t
    		qmod2 ^= 1
    		r = d - r
    	}
    	return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    				return pathSet{}, true, m, true
    			}
    			// A main module can only be set to its own version.
    			continue
    		}
    
    		vr, ok := r.resolvedVersion[m.Path]
    		if !ok {
    			// m is a viable answer to the query, but other answers may also
    			// still be viable.
    			filtered.pkgMods = append(filtered.pkgMods, m)
    			continue
    		}
    
    		if vr.version != m.Version {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. configure.py

    
    def is_cygwin():
      return platform.system().startswith('CYGWIN_NT')
    
    
    def get_input(question):
      try:
        try:
          answer = raw_input(question)
        except NameError:
          answer = input(question)  # pylint: disable=bad-builtin
      except EOFError:
        answer = ''
      return answer
    
    
    def symlink_force(target, link_name):
      """Force symlink, equivalent of 'ln -sf'.
    
      Args:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    			},
    		},
    		ExpectXML:   `<AttrsTest Answer="42" Int="8" int="9" Float="23.5" Uint8="255" Bool="true" Str="str" Bytes="byt" Int="0" int="0" Float="0" Uint8="0" Bool="false" Str="" Bytes=""></AttrsTest>`,
    		MarshalOnly: true,
    	},
    	{
    		Value: &AttrsTest{
    			Attrs: []Attr{
    				{Name: Name{Local: "Answer"}, Value: "42"},
    			},
    			Int:   8,
    			Named: 9,
    			Float: 23.5,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	// and updated from new information that flows on back edges.
    	startState, endState abt.T
    	// Use these to avoid excess work in the merge. If none of the
    	// predecessors has changed since the last check, the old answer is
    	// still good.
    	lastCheckedTime, lastChangedTime int32
    	// Whether the block had any changes to user variables at all.
    	relevant bool
    	// false until the block has been processed at least once. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top