Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for AAAA (0.04 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["*.foo.*"]              | "com.foo.bar.BarTest"     | "aaaa"                | true
            ["*.foo.*"]              | "foo.Test"                | "aaaa"                | false
            ["*.foo.*"]              | "fooTest"                 | "aaaa"                | false
            ["*.foo.*"]              | "foo"                     | "aaaa"                | false
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/reflectdata/alg_test.go

    	var a [5]string
    	var c [5]string
    
    	for i := 0; i < 5; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    func BenchmarkEqArrayOfStrings64(b *testing.B) {
    	var a [64]string
    	var c [64]string
    
    	for i := 0; i < 64; i++ {
    		a[i] = "aaaa"
    		c[i] = "cccc"
    	}
    
    	for j := 0; j < b.N; j++ {
    		_ = a == c
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. pkg/dns/client/dns.go

    		answers[i] = r
    	}
    	return answers
    }
    
    // aaaa takes a slice of ip string and returns a slice of AAAA RRs.
    func aaaa(host string, ips []netip.Addr) []dns.RR {
    	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
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  4. pilot/pkg/model/network_test.go

    					A:   net.ParseIP(fmt.Sprintf("10.0.0.%d", c)),
    				})
    			case dns.TypeAAAA:
    				// set a long TTL for AAAA
    				msg.Answer = append(msg.Answer, &dns.AAAA{
    					Hdr:  dns.RR_Header{Name: domain, Rrtype: dns.TypeAAAA, Class: dns.ClassINET, Ttl: s.ttl * 10},
    					AAAA: net.ParseIP(fmt.Sprintf("fd00::%x", c)),
    				})
    			// simulate behavior of some public/cloud DNS like Cloudflare or DigitalOcean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/suggest/settings/BadWordSettingsTest.java

            try {
                settings.badword().add("aaaa");
                assertTrue(true);
            } catch (IllegalArgumentException e) {
                fail();
            }
    
            try {
                settings.badword().add("");
                fail();
            } catch (IllegalArgumentException e) {
                assertTrue(true);
            }
    
            try {
                settings.badword().add("aaaa bbb");
                fail();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/util/TrieTest.groovy

            !trie.find("ccc")
        }
    
        def "can find prefix match"() {
            def trie = Trie.from("aaa", "bbb")
            expect:
            !trie.find("a")
            !trie.find("aa")
            trie.find("aaaa")
            trie.find("aaab")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pkg/dns/client/dns_test.go

    		},
    		{
    			name:      "success: TypeAAAA query returns AAAA records only",
    			host:      "dual.localhost.",
    			queryAAAA: true,
    			expected:  aaaa("dual.localhost.", []netip.Addr{netip.MustParseAddr("2001:db8:0:0:0:ff00:42:8329")}),
    		},
    		{
    			// This is not a NXDOMAIN, but empty response
    			name: "success: Error response if only AAAA records exist for typeA",
    			host: "ipv6.localhost.",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/net/dnsconfig.go

    	mtime         time.Time     // time of resolv.conf modification
    	soffset       uint32        // used by serverOffset
    	singleRequest bool          // use sequential A and AAAA queries instead of parallel queries
    	useTCP        bool          // force usage of TCP for DNS resolutions
    	trustAD       bool          // add AD flag to queries
    	noReload      bool          // do not check for config file updates
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. cmd/utils_test.go

    		}
    	}
    }
    
    // Test queries()
    func TestQueries(t *testing.T) {
    	testCases := []struct {
    		keys      []string
    		keyvalues []string
    	}{
    		{
    			[]string{"aaaa", "bbbb"},
    			[]string{"aaaa", "{aaaa:.*}", "bbbb", "{bbbb:.*}"},
    		},
    	}
    
    	for i, test := range testCases {
    		keyvalues := restQueries(test.keys...)
    		for j := range keyvalues {
    			if keyvalues[j] != test.keyvalues[j] {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Feb 23 21:28:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/PatternFilenameFilterTest.java

      }
    
      public void testAccept() {
        File dir = new File("foo");
        FilenameFilter filter = new PatternFilenameFilter("a+");
        assertTrue(filter.accept(dir, "a"));
        assertTrue(filter.accept(dir, "aaaa"));
        assertFalse(filter.accept(dir, "b"));
    
        // Show that dir is ignored
        assertTrue(filter.accept(null, "a"));
      }
    
      public void testNulls() throws Exception {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top