Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 312 for buzz (0.04 sec)

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

            when:
            iterator = source.listIterator()
            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:
    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. staging/src/k8s.io/apiserver/pkg/cel/environment/environment_test.go

    			typeVersionCombinations: []envTypeAndVersion{
    				{version.MajorMinor(1, 27), NewExpressions},
    				// 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)}},
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSourceTest.groovy

            source.addPendingCollection(setProvider(new StringBuffer("fuzz"), new StringBuffer("bazz")))
    
            then:
            source.iteratorNoFlush().collect() == []
    
            when:
            source.realizePending(StringBuffer.class)
    
            then:
            source.iteratorNoFlush().collect { it.toString() } == iterationOrder("bar", "baz", "fuzz", "bazz")
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/SortedSetElementSourceTest.groovy

            then:
            next == "buzz"
    
            when:
            iterator.remove()
    
            then:
            !iterator.hasNext()
    
            when:
            source.add("bazz")
            source.add("bizz")
            iterator = source.iteratorNoFlush()
            while(iterator.hasNext()) {
                iterator.next()
                iterator.remove()
            }
    
            then:
    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. pkg/config/security/security_test.go

    			values:    []string{"/foo/{buzz}/bar/{**}"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchAnyTemplate with named var: {buzz=*}",
    			values:    []string{"/foo/{buzz=*}/bar/{**}"},
    			wantError: true,
    		},
    		{
    			name:      "unsupported path template - matchAnyTemplate with named var: {buzz=**}",
    			values:    []string{"/{*}/foo/{buzz=**}/bar"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/settings/SoftwareTypeConventionIntegrationTest.groovy

                        "implementation = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}",
                        "runtimeOnly = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}",
                        "compileOnly = ${externalDependency('foo', 'bar', '1.0')}, ${externalDependency('baz', 'buzz', '2.0')}"
                    ]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 12:50:35 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/ElementSourceSpec.groovy

            source.addPendingCollection(setProvider("baz", "fizz", "fuzz"))
            source.addPendingCollection(setProvider("buzz"))
    
            then:
            source.iteratorNoFlush().collect() == []
    
            and:
            source.iterator().collect() == iterationOrder("foo", "bar", "baz", "fizz", "fuzz", "buzz")
        }
    
        def "can remove a realized element"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 25 10:08:46 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/state/DefaultManagedFactoryRegistryTest.groovy

            def fooFactory = factory(Foo)
            def buzzFactory = factory(Buzz)
            registry.withFactories(buzzFactory, fooFactory)
    
            expect:
            registry.lookup(fooFactory.id) == fooFactory
        }
    
        def "returns null for unknown type"() {
            def fooFactory = factory(Foo)
            def barFactory = factory(Bar)
            def buzzFactory = factory(Buzz)
            registry.withFactories(barFactory, fooFactory)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top