Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,669 for BAR (0.02 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/resolver/SourcePathProviderTest.kt

            withFolders {
                "project" {
                    "buildSrc/src/main" {
                        +"foo"
                        +"bar"
                    }
                }
                "gradle" {
                    "src" {
                        +"gradle-foo"
                        +"gradle-bar"
                    }
                }
            }
    
            assertThat(
                sourcePathFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 17:35:41 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectContainerExtensionsTest.kt

            val container = mock<PolymorphicDomainObjectContainer<DomainObjectBase>> {
                on { getByName("alice") } doReturn alice
                on { maybeCreate("alice", DomainObjectBase.Foo::class.java) } doReturn alice
                on { create(eq("bob"), eq(DomainObjectBase.Bar::class.java), any<Action<DomainObjectBase.Bar>>()) } doReturn bob
                on { create("john") } doReturn default
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 22:58:28 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/openapi/compiling_test.go

    	}{
    		{
    			expression:       "foo.foo == bar.bar",
    			expectEvalResult: true,
    		},
    		{
    			expression:         "foo.bar == 'value'",
    			expectCompileError: true,
    		},
    		{
    			expression:       "foo.foo == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "bar.bar == 'value'",
    			expectEvalResult: true,
    		},
    		{
    			expression:       "foo.common + bar.common <= 2",
    			expectEvalResult: false, // 3 > 2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/iptables_builder_test.go

    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "fu", "-b", "bar")
    				builder.AppendRuleV6(iptableslog.UndefinedCommand, "chain", "table", "-f", "foo", "-b", "baz")
    			},
    			true,
    		},
    		{
    			"insert-multi-v4",
    			true,
    			false,
    			func(builder *IptablesRuleBuilder) {
    				builder.InsertRuleV4(iptableslog.UndefinedCommand, "chain", "table", 1, "-f", "foo", "-b", "bar")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/NamedDomainObjectCollectionExtensionsTest.kt

                onCreateWithAction("bar", barObject)
            }
    
            container {
                // invoke syntax
                val foo by creating { foo = "foo" }
                assertThat(foo.foo, equalTo("foo"))
            }
    
            container.apply {
                // regular syntax
                val bar by creating { foo = "bar" }
                assertThat(bar.foo, equalTo("bar"))
            }
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 19.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top