Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 115 for fizz (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

                def foo = tasks.create("foo", SomeTask)
                def bar = tasks.register("bar") { println "Create :bar" }
                def baz = tasks.create("baz", SomeTask)
                def fizz = tasks.create("fizz", SomeTask)
                def fuzz = tasks.create("fuzz", SomeTask)
    
                tasks.withType(SomeTask).configureEach { task ->
                    println "Configuring " + task.name
                    bar.get()
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

                tasks.register<PrintLn>("ok") {
                    message.set(zipped)
                }
            """
    
            when:
            configurationCacheRun("ok", "-DmessagePrefix=fizz", "-DmessageSuffix=buzz")
    
            then:
            output.count("fizz buzz!") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun("ok", "-DmessagePrefix=foo", "-DmessageSuffix=bar")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/crdclient/client_test.go

    				return nil
    			})
    
    			// check we can patch items
    			var patchedCfg config.Config
    			if _, err := store.(*Client).Patch(*cfg, func(cfg config.Config) (config.Config, types.PatchType) {
    				cfg.Annotations["fizz"] = "buzz"
    				patchedCfg = cfg
    				return cfg, types.JSONPatchType
    			}); err != nil {
    				t.Errorf("unexpected err in Patch: %v", err)
    			}
    			// validate it is updated
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. src/expvar/expvar_test.go

    	m1.Add("z", 2)
    	m.Set("map2", &m2)
    	for i := 0; i < 9; i++ {
    		m2.Add(strconv.Itoa(i), int64(i))
    	}
    	var s1, s2 String
    	m.Set("str1", &s1)
    	s1.Set("hello, world!")
    	m.Set("str2", &s2)
    	s2.Set("fizz buzz")
    	b.ResetTimer()
    
    	b.ReportAllocs()
    	for i := 0; i < b.N; i++ {
    		_ = m.String()
    	}
    }
    
    func BenchmarkRealworldExpvarUsage(b *testing.B) {
    	var (
    		bytesSent Int
    		bytesRead Int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:46:19 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    					Infrastructure: &k8s.GatewayInfrastructure{
    						Labels:      map[k8s.AnnotationKey]k8s.AnnotationValue{"foo": "bar", "gateway.networking.k8s.io/ignore": "true"},
    						Annotations: map[k8s.AnnotationKey]k8s.AnnotationValue{"fizz": "buzz", "gateway.networking.k8s.io/ignore": "true"},
    					},
    				},
    			},
    			objects: defaultObjects,
    		},
    		{
    			name: "kube-gateway-ambient-redirect",
    			gw: k8sbeta.Gateway{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top