Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,528 for BAR (0.02 sec)

  1. pkg/config/host/names_test.go

    			host.Names{"foo,com"},
    			host.Names{"bar.com"},
    			host.Names{},
    		},
    		{
    			host.Names{"foo.com", "bar.com"},
    			host.Names{"bar.com"},
    			host.Names{"bar.com"},
    		},
    		{
    			host.Names{"foo.com", "bar.com"},
    			host.Names{"*.com"},
    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    			host.Names{"*.com"},
    			host.Names{"foo.com", "bar.com"},
    			host.Names{"foo.com", "bar.com"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 10:35:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/testFixtures/groovy/org/gradle/plugins/ide/AbstractIdeDeduplicationIntegrationTest.groovy

            projectName("foo") == "foo"
            projectName("foo/bar") == "root-foo-bar"
            projectName("baz/bar") == "baz-bar"
        }
    
        @ToBeFixedForConfigurationCache
        def "dedups projects with different nested level"() {
            given:
            project("root") {
                project("app") {}
                project("services") {
                    project("bar") {
                        project("app") {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            def foo = subproject(':foo')
            def bar = subproject(':bar')
    
            def cleanFoo = foo.task('cleanFoo').destroys('build/foo').shouldBlock()
            def cleanBar = bar.task('cleanBar').destroys('build/bar').dependsOn(cleanFoo)
            def cleanBarLocal = bar.task('cleanBarLocalState').destroys('build/bar-local').shouldBlock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        map.put("bar", 4);
        assertEquals("[bar=1, foo=2, bar=3, bar=4]", map.entries().toString());
        assertThat(map.keys()).containsExactly("bar", "foo", "bar", "bar").inOrder();
        map.keys().remove("bar"); // bar is no longer the first key!
        assertEquals("{foo=[2], bar=[3, 4]}", map.toString());
      }
    
      public void testLinkedValues() {
        Multimap<String, Integer> map = create();
        map.put("bar", 1);
        map.put("foo", 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 18K bytes
    - Viewed (0)
  5. pilot/pkg/model/config_test.go

    		{[]host.Name{"foo.com", "*.foo.com"}, "*foo.com", ""},
    
    		// should prioritize closest match
    		{[]host.Name{"*.bar.com", "foo.bar.com"}, "foo.bar.com", "foo.bar.com"},
    		{[]host.Name{"*.foo.bar.com", "bar.foo.bar.com"}, "bar.foo.bar.com", "bar.foo.bar.com"},
    
    		// should not match non-wildcards for wildcard needle
    		{[]host.Name{"bar.foo.com", "foo.bar.com"}, "*.foo.com", ""},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
  6. src/go/ast/ast_test.go

    	{[]string{"/* Foo   */"}, " Foo\n"},
    	{[]string{"/* Foo  Bar  */"}, " Foo  Bar\n"},
    	{[]string{"/* Foo*/", "/* Bar*/"}, " Foo\n Bar\n"},
    	{[]string{"/* Foo*/", "/**/", "/**/", "/**/", "// Bar"}, " Foo\n\nBar\n"},
    	{[]string{"/* Foo*/", "/*\n*/", "//", "/*\n*/", "// Bar"}, " Foo\n\nBar\n"},
    	{[]string{"/* Foo*/", "// Bar"}, " Foo\nBar\n"},
    	{[]string{"/* Foo\n Bar*/"}, " Foo\n Bar\n"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 22:03:44 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. pilot/pkg/security/trustdomain/bundle_test.go

    			principals:        []string{"*-td1/ns/foo/sa/bar"},
    			expect:            []string{"td2/ns/foo/sa/bar", "*-td1/ns/foo/sa/bar", "cluster.local/ns/foo/sa/bar"},
    		},
    		{
    			name:              "Principals not match any trust domains",
    			trustDomainBundle: NewBundle("td1", []string{"td2"}),
    			principals:        []string{"some-td/ns/foo/sa/bar"},
    			expect:            []string{"some-td/ns/foo/sa/bar"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_import_vendor.txt

    -- 122go.mod --
    module example.com/x
    go 1.22
    
    require "foo.com/internal/bar" v1.0.0
    
    -- go.mod --
    module example.com/x
    go 1.23
    
    require "foo.com/internal/bar" v1.0.0
    
    -- incorrect_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    
    -- correct_modules.txt --
    # foo.com/internal/bar v1.0.0
    ## explicit
    foo.com/internal/bar/a
    foo.com/internal/bar/b
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/width_test.go

    			requestInfo: &apirequest.RequestInfo{
    				Verb:     "list",
    				APIGroup: "foo.bar",
    				Resource: "events",
    			},
    			counts: map[string]int64{
    				"events.foo.bar": 699,
    			},
    			maxSeats:             10,
    			initialSeatsExpected: 7,
    		},
    		{
    			name:       "request verb is list, resource version not set",
    			requestURI: "http://server/apis/foo.bar/v1/events?limit=399",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 17K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/link6.txt

    For example, [https://en.wikipedia.org/wiki/John\_Adams\_(miniseries)](https://en.wikipedia.org/wiki/John_Adams_(miniseries)). And [https://example.com/\[foo]/bar](https://example.com/[foo]/bar){. And [https://example.com/(foo)/bar](https://example.com/(foo)/bar)! And [https://example.com/{foo}/bar](https://example.com/{foo}/bar){. And [https://example.com/](https://example.com/))baz{foo}.
    
    \[And [https://example.com/](https://example.com/)].
    
    -- html --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top