Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,460 for BAR (0.02 sec)

  1. subprojects/core/src/test/groovy/org/gradle/plugin/internal/DefaultPluginIdTest.groovy

            new DefaultPluginId("foo.bar").qualified
        }
    
        def "qualify if unqualified"() {
            expect:
            new DefaultPluginId("foo").withNamespace("bar").toString() == "bar.foo"
        }
    
        def "throws exception when trying to add multiple namespaces"() {
            when:
            new DefaultPluginId("foo.bar").withNamespace("bar")
            then:
            thrown IllegalArgumentException
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 24 07:29:33 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. src/cmd/go/internal/str/str_test.go

    		{"foo", "/", false},
    		{"foo", "foo", true},
    		{"foo", "foo/", false},
    		{"foo", "/foo", false},
    		{"foo/bar", "", true},
    		{"foo/bar", "foo", true},
    		{"foo/bar", "foo/", true},
    		{"foo/bar", "/foo", false},
    		{"foo/bar", "foo/bar", true},
    		{"foo/bar", "foo/bar/", false},
    		{"foo/bar", "/foo/bar", false},
    	} {
    		got := HasPathPrefix(tt.s, tt.prefix)
    		if got != tt.want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 25 16:49:13 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. pilot/pkg/networking/grpcgen/lds_test.go

    			in: []string{
    				"bar",
    				"bar.ns",
    				"bar.ns.svc",
    				"bar.ns.svc.cluster.local",
    				"foo:80",
    				"foo.ns:81",
    				"foo.ns.svc:82",
    				"foo.ns.svc.cluster.local:83",
    			},
    			want: listenerNames{
    				"bar":        {RequestedNames: sets.New("bar")},
    				"bar.ns":     {RequestedNames: sets.New("bar.ns")},
    				"bar.ns.svc": {RequestedNames: sets.New("bar.ns.svc")},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/group_by_dialect.mlir

      "foo.someop"() ({
        "bar.a"(%arg0) : (f32) -> f32
        "bar.b"(%arg1) : (f32) -> f32
        "bar.c"(%0) : (f32) -> f32
      }, {}): () -> ()
      return
    }
    
    // CHECK: func @handles_regions_that_use_arguments
    // CHECK: call [[foo:@[^(]*]](%arg0, %arg1, %0)
    // CHECK: func [[bar:@[^(]*]]
    // CHECK-SAME: dialect = "bar"
    // CHECK: bar.a
    // CHECK: bar.b
    // CHECK: bar.c
    // CHECK: func [[foo]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 28 23:43:21 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  5. pkg/config/host/name_test.go

    		},
    		{
    			"non-wildcard domain",
    			"bar.com", "foo.com", false,
    		},
    		{
    			"non-wildcard domain - order doesn't matter",
    			"foo.com", "bar.com", false,
    		},
    
    		{
    			"domain does not match subdomain",
    			"bar.foo.com", "foo.com", false,
    		},
    		{
    			"domain does not match subdomain - order doesn't matter",
    			"foo.com", "bar.foo.com", false,
    		},
    
    		{
    			"wildcard matches subdomains",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # Note, this program does not run. Presumably, 'DWORD $0' is simpler to
    # assembly 2^26 or so times.
    #
    # We build something which should be laid out as such:
    #
    # bar.Bar
    # main.Func1
    # bar.Bar+400-tramp0
    # main.BigAsm
    # main.Func2
    # bar.Bar+400-tramp1
    #
    # bar.Bar needs to be placed far enough away to generate relocations
    # from main package calls. and main.Func1 and main.Func2 are placed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. samples/certs/README.md

    - `workload-bar-[cert|key].pem`: workload certificate and key for URI SAN `spiffe://trust-domain-bar/ns/bar/sa/bar` signed by `ca-cert.key`.
    - `workload-foo-root-certs.pem`: root and intermediate CA certificates for foo workload certificate.
    - `workload-bar-root-certs.pem`: root and intermediate CA certificates for bar workload certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_dependencies/test_tutorial004_py310.py

                200,
                {"items": [{"item_name": "Bar"}, {"item_name": "Baz"}], "q": "foo"},
            ),
            (
                "/items?q=bar&limit=2",
                200,
                {"items": [{"item_name": "Foo"}, {"item_name": "Bar"}], "q": "bar"},
            ),
            (
                "/items?q=bar&skip=1&limit=1",
                200,
                {"items": [{"item_name": "Bar"}], "q": "bar"},
            ),
            (
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. test/typeparam/issue48604.go

    // license that can be found in the LICENSE file.
    
    package main
    
    type Foo[T any] interface {
    	CreateBar() Bar[T]
    }
    
    type Bar[T any] func() Bar[T]
    
    func (f Bar[T]) CreateBar() Bar[T] {
    	return f
    }
    
    func abc[R any]() {
    	var _ Foo[R] = Bar[R](nil)()
    }
    
    func main() {
    	abc[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 396 bytes
    - Viewed (0)
  10. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            buildB = new BuildTestFile(repo.workTree, "B")
            buildB.createDirs("foo", "bar")
            // git doesn't track directories so we need to create files in them
            buildB.file("foo/.gitkeepdir").touch()
            buildB.file("bar/.gitkeepdir").touch()
            buildB.settingsFile << """
                rootProject.name = 'B'
                include 'foo', 'bar'
            """
            buildB.buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top