Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 167 for ians (0.14 sec)

  1. src/net/lookup_test.go

    		if e, a := "fe80::1%lo0", addr; e != a {
    			t.Errorf("wrong host: want %q got %q", e, a)
    		}
    	}
    }
    
    var lookupCNAMETests = []struct {
    	name, cname string
    }{
    	{"www.iana.org", "icann.org."},
    	{"www.iana.org.", "icann.org."},
    	{"www.google.com", "google.com."},
    	{"google.com", "google.com."},
    	{"cname-to-txt.go4.org", "test-txt-record.go4.org."},
    }
    
    func TestLookupCNAME(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/jquery-3.6.3.min.map

    AO,EAMZ,OAAO,GAIV,SAASqD,GAAgBC,GACxB,OAAyB,EAAlBA,EAASjU,OACf,SAAUe,EAAMnB,EAAS+Q,GACxB,IAAI9R,EAAIoV,EAASjU,OACjB,MAAQnB,IACP,IAAMoV,EAAUpV,GAAKkC,EAAMnB,EAAS+Q,GACnC,OAAO,EAGT,OAAO,GAERsD,EAAU,GAYZ,SAASC,GAAUvC,EAAW7Q,EAAKqM,EAAQvN,EAAS+Q,GAOnD,IANA,IAAI5P,EACHoT,EAAe,GACftV,EAAI,EACJ2C,EAAMmQ,EAAU3R,OAChBoU,EAAgB,MAAPtT,EAEFjC,EAAI2C,EAAK3C,KACTkC,EAAO4Q,EAAW9S,MAClBsO,IAAUA,EAAQpM,EAAMnB,EAAS+Q,KACtCwD,EAAa7W,KAAMyD,GACdqT,GACJtT,EAAIxD,KAAMuB,KAMd,OAAOsV,EAGR,SAASE,GAAYxE,EAAWlQ,EAAU+R,EAA...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 135.2K bytes
    - Viewed (0)
  3. src/time/zoneinfo_read.go

    }
    
    var errBadData = errors.New("malformed time zone information")
    
    // LoadLocationFromTZData returns a Location with the given name
    // initialized from the IANA Time Zone database-formatted data.
    // The data should be in the format of a standard IANA time zone file
    // (for example, the content of /etc/localtime on Unix systems).
    func LoadLocationFromTZData(name string, data []byte) (*Location, error) {
    	d := dataIO{data, false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_fr.properties

    labels.advance_search_filetype_powerpoint	=	MS PowerPoint
    labels.advance_search_occt	=	Termes affichés
    labels.advance_search_occt_default	=	n'importe où dans la page
    labels.advance_search_occt_allintitle	=	dans le titre de la page
    labels.advance_search_occt_allinurl	=	dans l'url de la page
    labels.advance_search_sitesearch	=	Site ou domaine
    labels.advance_search_timestamp	=	Dernière mise à jour
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  5. test/typeparam/orderedmapsimp.dir/a.go

    		var zerov V
    		return zerok, zerov, false
    	}
    	return keyval.key, keyval.val, true
    }
    
    // Equal reports whether two slices are equal: the same length and all
    // elements equal. All floating point NaNs are considered equal.
    func SliceEqual[Elem comparable](s1, s2 []Elem) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for i, v1 := range s1 {
    		v2 := s2[i]
    		if v1 != v2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      local sans=""
      for extra in "$@"; do
        if [[ -n "${extra}" ]]; then
          sans="${sans}IP:${extra},"
        fi
      done
      sans="${sans}IP:${service_ip},DNS:kubernetes,DNS:kubernetes.default,DNS:kubernetes.default.svc,DNS:kubernetes.default.svc.${DNS_DOMAIN},DNS:${MASTER_NAME}"
    
      echo "Generating certs for alternate-names: ${sans}"
    
      setup-easyrsa
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/util/MD4.java

    // This file is currently unlocked (change this line if you lock the file)
    //
    // $Log: MD4.java,v $
    // Revision 1.2  1998/01/05 03:41:19  iang
    // Added references only.
    //
    // Revision 1.1.1.1  1997/11/03 22:36:56  hopwood
    // + Imported to CVS (tagged as 'start').
    //
    // Revision 0.1.0.0  1997/07/14  R. Naffah
    // + original version
    //
    // $Endlog$
    /*
     * Copyright (c) 1997 Systemics Ltd
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9.3K bytes
    - Viewed (0)
  8. test/typeparam/slices.go

    func _Min[T Ordered](a, b T) T {
    	if a < b {
    		return a
    	}
    	return b
    }
    
    // _Equal reports whether two slices are equal: the same length and all
    // elements equal. All floating point NaNs are considered equal.
    func _Equal[Elem comparable](s1, s2 []Elem) bool {
    	if len(s1) != len(s2) {
    		return false
    	}
    	for i, v1 := range s1 {
    		v2 := s2[i]
    		if v1 != v2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  9. src/cmd/internal/buildid/buildid.go

    		return "", &fs.PathError{Op: "parse", Path: name, Err: errBuildIDMalformed}
    	}
    
    	off := int64(8)
    	for {
    		if _, err := f.Seek(off, io.SeekStart); err != nil {
    			return "", err
    		}
    
    		// TODO(iant): Make a debug/ar package, and use it
    		// here and in cmd/link.
    		var hdr [60]byte
    		if _, err := io.ReadFull(f, hdr[:]); err != nil {
    			if err == io.EOF {
    				// No more entries, no build ID.
    				return "", nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  10. src/mime/encodedword.go

    var (
    	errInvalidWord = errors.New("mime: invalid RFC 2047 encoded-word")
    )
    
    // Encode returns the encoded-word form of s. If s is ASCII without special
    // characters, it is returned unchanged. The provided charset is the IANA
    // charset name of s. It is case insensitive.
    func (e WordEncoder) Encode(charset, s string) string {
    	if !needsEncoding(s) {
    		return s
    	}
    	return e.encodeWord(charset, s)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top