Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,528 for BAR (0.03 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                            assert files.collect { it.name } == ['b-bar.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo
                        bar
                        create 'default'
                    }
                    task barJar(type: Jar) {
                       archiveBaseName = 'b-bar'
                       destinationDirectory = buildDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

            file('augmented').mkdir()
            file('augmented/a').mkdir()
            file('augmented/b').mkdir()
            file('augmented/b/b1').createFile()
    
            file('bar/foo').mkdir()
            file('bar/foo/c').mkdir()
            file('bar/foo/d').mkdir()
            file('bar/foo/d1').createFile()
    
            when:
            execute('showTransformedFiles')
    
            then:
            assertTransformExecuted()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. platforms/software/plugins-version-catalog/src/integTest/resources/org/gradle/api/plugins/catalog/internal/dependencies-notations.toml

    [libraries]
    simple = { group = "foo", name = "bar", version = "1.0" }
    simple-with-rich1 = { group = "foo", name = "bar", version = { prefer = "1.0" } }
    simple-with-rich2 = { group = "foo", name = "bar", version.prefer = "1.0" }
    simple-with-rich3 = { group = "foo", name = "bar", version.require = "1.0" }
    simple-with-rich4 = { group = "foo", name = "bar", version.strictly = "1.0" }
    simple-with-rich5 = { group = "foo", name = "bar", version = { rejectAll = true } }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 16 12:28:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/testdata/composites.golden

    		{4, 5},
    	},
    }
    
    var _ = map[string]T{
    	"foo": {},
    	"bar": {1, 2},
    	"bal": {3, 4},
    }
    
    var _ = map[string]struct {
    	x, y int
    }{
    	"foo": {},
    	"bar": {1, 2},
    	"bal": {3, 4},
    }
    
    var _ = map[string]interface{}{
    	"foo": T{},
    	"bar": T{1, 2},
    	"bal": T{3, 4},
    }
    
    var _ = map[string][]int{
    	"foo": {},
    	"bar": {1, 2},
    	"bal": {3, 4},
    }
    
    var _ = map[string][]int{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 12 03:55:43 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/NormalizingExcludeFactoryTest.groovy

            group("foo")                                                        | module("bar")                               | anyOf(group("foo"), module("bar"))
            anyOf(group("foo"), group("bar"))                                   | group("foo")                                | groupSet("foo", "bar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

            when:
            succeeds "foo", "bar"
    
            then:
            output.contains "foo: foo"
            output.contains "bar: task bar: hi from bar"
        }
    
        def "can validate tasks using rule methods"() {
            given:
            buildFile << """
                class MyPlugin extends RuleSource {
                    @Validate
                    void checkTask(@Path('tasks.bar') EchoTask task) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
Back to top