Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 301 for fizz (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ListElementSourceTest.groovy

            iterator.add("bizz")
    
            then:
            source.iteratorNoFlush().collect() == ["bizz", "foo", "fuzz", "fizz", "bazz", "buzz"]
    
            and:
            source.iterator().collect() == ["bizz", "foo", "bar", "baz", "buzz", "fuzz", "fizz", "bazz", "buzz"]
        }
    
        def "listIterator can set elements"() {
            given:
            source.add("foo")
            source.addPending(provider("bar"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 13 05:06:48 UTC 2020
    - 12.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSourceTest.groovy

            when:
            source.add("buzz")
            iterator = source.iterator()
            next = iterator.next()
    
            then:
            next == "baz"
    
            when:
            iterator.remove()
    
            then:
            iterator.hasNext()
            source.iterator().collect() == ["fooz", "fizz", "fuzz", "buzz"]
    
            when:
            iterator = source.iterator()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

            source.addPending(provider2)
            source.add("fizz")
    
            then:
            source.iteratorNoFlush().collect() == iterationOrder("foo", "fizz")
    
            when:
            provider1.value = ["fuzz", "buzz"]
    
            then:
            source.iterator().collect() == iterationOrder("foo", "fuzz", "buzz", "bar", "fizz")
    
            when:
            provider1.value = ["baz"]
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/SortedSetElementSourceTest.groovy

            when:
            source.add("buzz")
            iterator = source.iterator()
            next = iterator.next()
    
            then:
            next == "buzz"
    
            when:
            iterator.remove()
    
            then:
            iterator.hasNext()
            source.iterator().collect() == iterationOrder("foo", "fooz", "fizz", "fuzz")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 15:12:14 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/processing/IsolatingFilerTest.groovy

        def "packages are valid originating elements"() {
            when:
            filer.createSourceFile("Foo", pkg("fizz"))
            filer.createResource(StandardLocation.SOURCE_OUTPUT, "", "foo.txt", pkg("fizz"))
    
            then:
            result.generatedTypesWithIsolatedOrigin.size() == 1
            result.generatedTypesWithIsolatedOrigin["fizz.package-info"] == ["Foo"] as Set
            result.generatedResourcesWithIsolatedOrigin.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    				// always enabled for StoredExpressions
    			},
    			invalidExpressions: []string{"fizz == 'buzz'"},
    			activation:         map[string]any{"fizz": "buzz"},
    			opts: []VersionedOptions{
    				{IntroducedVersion: version.MajorMinor(1, 28), EnvOptions: []cel.EnvOption{cel.Variable("fizz", cel.StringType)}},
    			},
    		},
    		{
    			name: "user defined variable enabled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/core-runtime/serialization/src/test/groovy/org/gradle/internal/serialize/HierarchicalNameSerializerTest.groovy

                "com.foo.bar.FooBarBazTest",
                "com/foo/bar/FooBarBazTest\$SomeUtility.java",
                "com.foo.bar.FooBarBazTest\$SomeUtility",
                "com.fizz.buzz.TestUtil",
                "com.fizz.buzz.SomeUtil",
                "com.google.common.collect.ImmutableSet",
                "com.google.common.collect.ImmutableSet",
                "com.google.common.collect.ImmutableSet",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/deployment/infrastructure-labels-annotations.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      annotations:
        gateway.istio.io/controller-version: "5"
    ---
    apiVersion: v1
    kind: ServiceAccount
    metadata:
      annotations:
        fizz: buzz
      labels:
        foo: bar
        gateway.istio.io/managed: istio.io-gateway-controller
        gateway.networking.k8s.io/gateway-name: default
        istio.io/dataplane-mode: none
        istio.io/gateway-name: default
      name: default-istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeDeclarationIntegrationTest.groovy

                    bar {
                        baz = "fizz"
                    }
                }
            """
    
            when:
            run(":printTestSoftwareTypeExtensionConfiguration", ":printAnotherSoftwareTypeExtensionConfiguration")
    
            then:
            assertThatDeclaredValuesAreSetProperly()
            outputContains("""foo = test2\nbaz = fizz""")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 19 16:59:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            then:
            source.iterator().collect() == ["foo", "bar", "baz"]
    
            when:
            provider1.value = ["buzz", "fizz", "foo"]
    
            then:
            source.iterator().collect() == ["foo", "buzz", "fizz"]
        }
    
        def "adding is not ignored when a realized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top